Which functions are part of the array module? Select 2 options. Assume you have already entered these lines of code.

import array
arr = array.array('b',[5, 1, 2, 7, 6])

arr.index(3)

arr.sort()

arr.find(3)

arr.search(3)

arr.append(3)

Respuesta :

Answer:

arr.index(3)

arr.append(3)

Edge2020

Answer:

arr.index(3)

arr.append(3)

Explanation:

hope you get 100%