Sztuczna_inteligencja_gr_13/bin/Main/test.py

15 lines
219 B
Python
Raw Normal View History

2021-06-21 12:05:41 +02:00
rows = 3
columns = 5
2021-06-20 23:37:15 +02:00
2021-06-21 12:05:41 +02:00
small_image_array = [[0 for i in range(rows)] for j in range(columns)]
2021-06-20 23:37:15 +02:00
2021-06-21 12:05:41 +02:00
for el in small_image_array:
print(el)
2021-06-20 23:37:15 +02:00
2021-06-21 12:05:41 +02:00
small_image_array[2][1] = 2
2021-06-20 23:37:15 +02:00
2021-06-21 12:05:41 +02:00
print()
for el in small_image_array:
print(el)
2021-06-20 23:37:15 +02:00