写文件时,生成的文件路径默认为代码目录下。
写文件的代码如下:
#! /usr/bin/python
#__*__ coding:UTF-8 __*__
f = open('somefile.txt','w')
f.write('hello wold!')
f.close()
生成文件名为'somefile.txt',路径为该代码所在路径下。
写文件时,生成的文件路径默认为代码目录下。
写文件的代码如下:
#! /usr/bin/python
#__*__ coding:UTF-8 __*__
f = open('somefile.txt','w')
f.write('hello wold!')
f.close()
生成文件名为'somefile.txt',路径为该代码所在路径下。
本文标题:写文件
本文链接:https://www.haomeiwen.com/subject/lszvbttx.html
网友评论