1
這是字數統計程序。它怎麼能變得更簡單?打開:無效的模式或文件名
import re
from collections import Counter
with open('C:\Data\test.txt') as f:
passage = f.read()
words = re.findall(r'\w+', passage)
cap_words = [word.upper() for word in words]
word_counts = Counter(cap_words)
保持收到此錯誤信息:
Traceback (most recent call last):
File "C:/Python27/wordcount", line 4, in <module>
with open('C:\Data\test.txt') as f:
IOError: [Errno 22] invalid mode ('r') or filename: 'C:\\Data\test.txt'
或者他可以只使用''C:\\ \\的數據test.txt''。 –
我嘗試使用雙反斜槓並沒有出現錯誤消息。然而,當我實際運行程序沒有出現它只是說'重新啓動'爲什麼這是? – kmz
@ user2554477你沒有在你的程序中打印任何東西,你期望它打印什麼? –