Files
it_school/Python_module_1/python_011.py
Ionel Andrei Cataon f082bec56b
Some checks failed
It_School_001/pipeline/head Something is wrong with the build of this commit
update
2026-02-05 10:40:53 +02:00

23 lines
272 B
Python

#!/home/andrei/it_school/bin/python3
T = [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
]
print(T[0][0]) # 1
print(T[1][2]) # 6
print(T[2][1]) # 8
print("---")
for i in T:
print(i)
print("---")
for j in T:
for v in j:
print(v)
print("---")