写文件

作者: 紫米阁 | 来源:发表于2017-01-18 13:45 被阅读12次

    写文件时,生成的文件路径默认为代码目录下。

    写文件的代码如下:

    #! /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