美文网首页
Write() 函数

Write() 函数

作者: Co酱_秋乏术 | 来源:发表于2021-12-30 00:27 被阅读0次

    write( )函数的参数是字符串,分以下2种情况:

    通过write()函数向文件中写入一行

    >>> f=open(r"C:\Users\Administrator\Desktop\test.txt",'w')

    >>> f.write('hello,world!\n') #包含一个换行符。

    >>> f.close()

    通过write()函数向文件中写入多行

    >>> f=open(r"C:\Users\Administrator\Desktop\test.txt",'w')

    >>> f.write('hello python!\nhello world!\n')#包含多个换行符

    >>> f.close()

    运行程序,结果如下

    相关文章

      网友评论

          本文标题:Write() 函数

          本文链接:https://www.haomeiwen.com/subject/mjawqrtx.html