The correct line of code that will create a numpy array is:
myScores = numpy.array([98, 87, 89, 92])
You only need to use numpy.array
with square brackets []
to define the list of elements you want to include in the array.
Which line of code will correctly create an array? (Assume numpy has already been imported.)
(1 point)
Responses
myScores = numpy.array([98, 87, 89, 92])
myScores = numpy.array([98, 87, 89, 92])
myScores = numpy.array(98, 87, 89, 92)
myScores = numpy.array(98, 87, 89, 92)
myScores = numpy.array[(98, 87, 89, 92)]
myScores = numpy.array[(98, 87, 89, 92)]
myScores = numpy.array{98, 87, 89, 92}
myScores = numpy.array{98, 87, 89, 92}
Skip to navigation
1 answer
The correct line of code that will create a numpy array is:
myScores = numpy.array([98, 87, 89, 92])
You only need to use numpy.array
with square brackets []
to define the list of elements you want to include in the array.