Код: Выделить всё
def matrixOlustur(data):
matrix = []
matrix2 = []
i = 0
j = 0
while data != None:
while i < 64:
while j < 64:
for harf in data:
matrix2[j] = harf
j += 1
data = open("data.txt")
matrix = matrixOlustur(data)
print(matrix)
Подробнее здесь: https://stackoverflow.com/questions/793 ... ate-matrix
Мобильная версия