csv ファイル名を place.csv として
Python
1import csv
2
3with open('place.csv', 'r', newline='', encoding='utf_8_sig') as fo:
4 words = [s for row in csv.reader(fo) for s in row]
5 dic = {s:words.count(s) for s in set(words)}
6 print(dic) # {'広島': 1, '東京': 2, '横浜': 3, '大阪': 1}
7 pc = dict(sorted(dic.items(), key=lambda x: x[1], reverse=True))
8 print(*pc.items()) # ('横浜', 3) ('東京', 2) ('広島', 1) ('大阪', 1)
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。