0
How to write 2 dimensional array in python
2 odpowiedzi
+ 2
Lists of lists are often used to represent 2D grids, as Python lacks the multidimensional arrays that would be used for this in other languages.
Check this lesson:
https://www.sololearn.com/learn/Python/2431/
+ 1
you can manage 2d arrays by list. i used it in my latest code
https://code.sololearn.com/cB76FrBpsXDK/?ref=app
also there is NumPy extension for python, but i am not familiar, how to use it.