+ 1
How 2D grids and matrices work ?
8 Respuestas
+ 14
Python provides many ways to create 2-dimensional lists/arrays
U can understand it using the link below ✅
https://www.geeksforgeeks.org/python-using-2d-arrays-lists-the-right-way/
+ 3
What do you mean?
+ 1
Oh, with lists!
here's a list: [1,2,3,4,5]
here's a 2d list:
[[1,2,3,4,5],
[6,7,8,9,0]]
what is your question, i still don't understand
0
In the lists lesson 1.29
The talked about how to create a 2 grids such as matrices using lists but I didn't understand
0
How it actually works
0
I still don't understand. How what works? You need to be specific, not just ask, "explain everything about this".
0
Never mind I figured out
0
Thank you that actually really help me to understand more