我还需要让程序分别显示在你的数字中确实有数字的单词
f = open("lolpa.txt", "r")
list1 = (f)
temp = []
for item in list1:
if "1" "2" "3" "4" "5" "6" "7" "8" "9" "0" in item:
temp.append(item)
else:
print(item)
是我到目前为止所拥有的,但由于某种原因它显示了所有的单词。
编辑: lolpa.txt 只是一个用于比较的文件
编辑:如果那会改变什么,我正在使用 python 3.2。