写文件
2017-01-18 本文已影响12人
紫米阁
写文件时,生成的文件路径默认为代码目录下。
写文件的代码如下:
#! /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',路径为该代码所在路径下。