ANSWER QUICK 50 POINTS
You have the following code in your program.

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


D = array([2.5, 3, 7.4])

D = array('f',[2.5, 3, 7.4])

D = array['f',[2.5, 3, 7.4]]

D = array('f',2.5, 3, 7.4)

Respuesta :

Answer:

B

Explanation:

D = array('f',[2.5, 3, 7.4])

Answer:

D = array('f',[2.5, 3, 7.4])

Explanation:

is the answer