6th Apr 2018, 2:58 AM
Maninder $ingh
Maninder $ingh - avatar
3 Answers
+ 4
I will give a straight forward answer for you. An array is simply a list of things. It could be strings, values, variables, other arrays or even a wild combination of all of them. In python, lists, dictionaries and tuples are all types of arrays. Then there is special syntax to refer to the items in the array, and many operations that can be done on them and their contents. See below for more info... https://www.programiz.com/python-programming/array
6th Apr 2018, 7:21 AM
synorax
synorax - avatar
+ 3
It holds data you can find a lot more about them online
6th Apr 2018, 3:05 AM
Ole113
Ole113 - avatar
+ 3
The most import data structure for scientific computing in Python is the NumPy array. NumPy arrays are used to store lists of numerical data and to represent vectors, matrices, and even tensors. NumPy arrays are designed to handle large data sets efficiently and with a minimum of fuss. The NumPy library has a large set of routines for creating, manipulating, and transforming NumPy arrays. http://www.physics.nyu.edu/pine/pymanual/html/chap3/chap3_arrays.html
6th Apr 2018, 3:52 AM
📈SmileGoodHope📈
📈SmileGoodHope📈 - avatar