+ 1
Difference between numpy and list in python
3 Answers
+ 3
All elements of Numpy arrays are of same datatypes while elements in list can be of different datatypes... Numpy arrays are faster.
+ 1
https://www.sololearn.com/discuss/1909157/?ref=app
This piece may help.
Rachumallu Lakshmisrinivas
0
Numpy array has all element of same type, in a list it is not necessary. Numpy array can only have non-negative indexes while list can have any integer.