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'
>>>