python实例2—NameError: name 'file' is not defined

原文地址:http://hi.baidu.com/liwqnmg/item/a93d0c331193c4d62f8ec24c


#main
f = file('test.txt','w')
f.write('hello liwq')
f.close()

按照教程上,打开一个文件用file。运行就报错:

F:\python>python main.py
Traceback (most recent call last):
  File "main.py", line 2, in 
    f = file('test.txt','w')
NameError: name 'file' is not defined

 

从网上查把file改成open就好了。


你可能感兴趣的:(Python)