#辞書を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
More than 1 year has 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