文件 IO
Posted byh7595
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件 IO相关的知识,希望对你有一定的参考价值。
# 写文件
with open("byh.txt","wt") as out_flie:
out_flie.write("121431 414")
with open("byh.txt","rt") as in_file:
text = in_file.read()
print(text)
输出结果:
121431
414
以上是关于文件 IO的主要内容,如果未能解决你的问题,请参考以下文章