ВК
Size: a a a
ВК
AK
AK
АМ
М
АМ
М
М
АМ
list_of_tuples = [(1,2),(3,4)]
df = pd.DataFrame(list_of_tuples)
df.to_csv()
М
v
import csv
tuples = [(1, 2, 3), (3, 2,1)]
with open("file.csv", 'w', newline='') as f:
writer = csv.writer(f)
writer.writerows(f)
Z
Z
IS
Z
IS
Z
h
Z
v