码迷,mamicode.com
首页 > 编程语言 > 详细

python3写txt正确方法

时间:2021-02-18 13:19:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:port   class   close   span   string   import   ring   修改   写入   

#coding=utf8
import io
import string
a="你好"
f = open(rf:\enuser.txt, a) #若文件不存在,系统自动创建。‘a‘表示可连续写入到文件,保留原内容,在原
                      #内容之后写入。可修改该模式(‘w+‘,‘w‘,‘wb‘等)
f.write(a)
f.write(\n)
f.write(a)
f.write(\n)

f.write(a+\n)
f.close()

 

python3写txt正确方法

标签:port   class   close   span   string   import   ring   修改   写入   

原文地址:https://www.cnblogs.com/gisoracle/p/14406281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!