The type code for an int array is 'b'. What line of code creates an array of int data values?

intArray = array('b',[2, 5, 10])
intArray.array('b',[2, 5, 10])
intArray = array('b',2, 5, 10)
intArray.array('b',2, 5, 10)

Respuesta :

Answer:

intArray=array(’b’,[2,5,10])

Explanation:on edge

Answer:

it's A

Explanation:

because The first value in the parentheses is the type code. The second value should be a list of ints. You use square brackets to designate a list.