我做了一个程序:
import collections
x = input("Enter in text: ")
x_counter = collections.Counter()
x_counter.update(x)
print("Your sequence contains:\n")
for i in '`1234567890-=qwertyuiop[]\asdfghjkl;zxcvbnm,./~!@#$%^&*()_+QWERTYUIOP\
{}|ASDFGHJKL:"ZXCVBNM<>?':
print(i, x_counter[i])
这会打印出一个字母在文本中使用的次数。当用户输入较小尺寸的文本时,例如段落......程序运行良好。当用户输入很长的文本时,比如说 5 段...程序退出并以 bash 命令的形式运行所有输入...这是为什么???