Join IDNLearn.com today and start getting the answers you've been searching for. Discover prompt and accurate answers from our experts, ensuring you get the information you need quickly.

You have this code in your program.

from array import *

Which line of code will create an array?


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

G = array(2.5, 3, 7.4)
G = array(2.5, 3, 7.4)

G = array[2.5, 3, 7.4]
G = array[2.5, 3, 7.4]

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