案例:在桌面上建立文件,并写入Hello world!
正确写法
file=open('C://users/lenovo/Desktop/123.txt','w')
file.write('Hello world!')
我的错误写法
file.open('C://users/lenovo/Desktop/123.txt','w')
file.write('Hello world!')
结果显示没有定义file。
扩展写法:
定义任何一个文件,比如doc.ppt,等等。
案例:在桌面上建立文件,并写入Hello world!
正确写法
file=open('C://users/lenovo/Desktop/123.txt','w')
file.write('Hello world!')
我的错误写法
file.open('C://users/lenovo/Desktop/123.txt','w')
file.write('Hello world!')
结果显示没有定义file。
扩展写法:
定义任何一个文件,比如doc.ppt,等等。