Double陈

文件基本操作seek指针移动

# f.seek的转账应用用户输入充值信息的同时有文件能检测是否有短信录入
#追加的文本内容
with open("a.txt",mode="at",encoding="utf-8") as f:
f.write("2021.3.24账户充值100元")

# 查看文件的内容
import time
with open("a.txt",mode="rb") as f:
f.seek(0,2)
while True:
res=f.readline()
if len(res)==0:
time.sleep(0.3)
else:
print(res.decode("utf-8"),end="")

# 空的文本文件
a.txt

posted on 2021-03-29 15:33  Double陈  阅读(80)  评论(0编辑  收藏  举报

导航