26.7k views
12 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.index(3)

arr.sort()

arr.find(3)

arr.search(3)

arr.append(3)

User Jjmerelo
by
5.8k points

2 Answers

9 votes

Answer:

arr.index(3)

arr.append(3)

Step-by-step explanation:

hope you get 100%

User Valloric
by
5.6k points
7 votes

Answer:

arr.index(3)

arr.append(3)

Edge2020

User Guido Kitzing
by
6.0k points