Обновить README.md

This commit is contained in:
Матвей Карачев 2026-05-08 17:47:00 +00:00
parent c94dd84798
commit 4832e65216

View File

@ -55,3 +55,16 @@ yновая
def transpose_table(table: list)-> list:
return [list (row) for row in zip*(table)]
новая самаяяяяяя
return [list(row) for row in zip(*table)]
table1 = [
[1, 2, 3],
[4, 5, 6]
]
print(transpose_table(table1))