import collections
import string
with open('cipher.txt') as f:
f = f.read().replace(' ', '').replace('\n','').lower()
f = f.strip(string.punctuation)
cnt = collections.Counter(f.replace(' ', ''))
for letter in sorted(cnt):
print(letter, cnt[letter])
句読点を外す方法!! その線をどこに置くべきかわかりませんか?誰かが私のコードを変更して、文字以外のすべてを削除できますか? ありがとうございました