码迷,mamicode.com
首页 > 其他好文 > 详细

文件 IO

时间:2019-12-01 16:32:47      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:文件   read   int   txt   out   open   text   file   ext   

# 写文件
with open("byh.txt","wt") as out_flie:
out_flie.write("121431\n414")
with open("byh.txt","rt") as in_file:
text = in_file.read()
print(text)

输出结果:

121431
414

文件 IO

标签:文件   read   int   txt   out   open   text   file   ext   

原文地址:https://www.cnblogs.com/byh7595/p/11959276.html

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