Python:文件操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python:文件操作相关的知识,希望对你有一定的参考价值。
#!/usr/bin/python3 str1 = input("请输入:") print("你输入的是:",str1) f=open("abc.txt","a") f.write("python study is good\n我正在学习中\n") f.close() fr=open("abc.txt","r") str2=fr.readline() #str2=fr.readlines() print("abc.txt:") print(str2) fr.close()
以上是关于Python:文件操作的主要内容,如果未能解决你的问题,请参考以下文章