Skip to content

Instantly share code, notes, and snippets.

View shihochan's full-sized avatar
🐱
Meow

Yuki Shiho shihochan

🐱
Meow
View GitHub Profile
import csv
# 書き込み用ファイルオープン
wf = open('mult99-1.csv', 'w')
writer = csv.writer(wf, lineterminator='\n')
# 例として 1x1 ~ 3x3 までを想定
for i in range(1, 4):
for j in range(1, 4):
file = '{0}x{1}.dat'.format(i, j)