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)