文字列全体を読み取ることはできますが、個々の文字はカウントされません。
ここに私が持っているものがあります:
#!/usr/bin/python2.7
ans = True
while ans:
print("""
1. Read in an text file.
Press enter to exit
""")
ans=raw_input("Make a selection")
if ans == "1":
print("Enter in a text file to open")
txt = raw_input("> ")
txt_open = open(txt, 'r')
d = dict()
for c in txt_open:
if c not in d:
d[c] = 1
else:
d[c] += 1
print d