You have the following code in your program.

from array import *
Which line of code would create an array?


E = array([3, 6, 10])

E = array('b',[3, 6, 10])

E.array('b',[3, 6, 10])

E = array('b',3, 6, 10)

Respuesta :

Answer:

E = array('b',3, 6, 10)

Explanation:

in the lesson I saw an array created in this format arr = array('f',[1.5, 3.6, 23])

:)

Answer:

The answer is E = array('b',[3, 6, 10])

Explanation:

ACCESS MORE