#辞書をCSVファイルに保存
import csv
with open('dct.csv', 'w') as f:
writer = csv.writer(f)
for c, Ss in C2Ss.items():
writer.writerow([c, Ss])
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 3 years have passed since last update.
#辞書をCSVファイルに保存
import csv
with open('dct.csv', 'w') as f:
writer = csv.writer(f)
for c, Ss in C2Ss.items():
writer.writerow([c, Ss])
Register as a new user and use Qiita more conveniently
Go to list of users who liked