Ali has created a small program in Python, but he wants to store his data in a multi-dimensional array. He would like to use advanced mathematical and scientific calculations in his program. Ali should add the ___________ library to his program.

Respuesta :

Answer:

Numpy

Explanation:

fichoh

The Numpy library is a python library which is capable of processing multidimensional data in matrix related form called array.

  • The Numpy library is capable performing mathematical and statistical computation using easy built-in functions including max(), min(), len() and so on.

  • Arrays representation allows for faster processing and manipulation of data, hence saving time and memory.

  • Advanced scientific computation and matrix manipulation such as determinant, transpose, and many more can also be performed using Numpy.

  • Using the numpy.array function, multidimensional arrays can be created upon using the code

  • np.array( [10, 11,8, 7, 14 16], float) creates a multidimensional array of type float.

Learn more :https://brainly.com/question/12907977?referrer=searchResults