as title
我剛開始接觸PYTHON幾天而已
因為想試著練習一些指令
所以我下載了一篇曼德拉的講稿(已經存成txt檔案(命名成MDL.txt)
我想試著去計算稿子裡面出現了幾次的"is"跟"the"
可是我只知道指令好像是用file = open("檔案名稱","r")
想當然耳.......讀不出來
請問是要把txt存在某個地方嗎?還是?
我有試著估狗了一下(關鍵字: python2.7 讀檔)
但是搜尋到的東西我都看不太懂......或者說
我覺得好像跟我的問題沒有對到焦orz
附上失敗的code.....
>>> file = open('MDL.txt','r')
Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
file = open('MDL.txt','r')
IOError: [Errno 2] No such file or directory: 'MDL.txt'
>>>