31,894 views
23 votes
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.sort()
arr.search(3)
O arr.index(3)
arr.append(3)
arr.find(3)

User Subdigger
by
2.8k points

1 Answer

10 votes

Answer:

arr.index(3)

arr.append(3)

Step-by-step explanation:

Edge2020

User Badarshahzad
by
3.4k points