文件操作的追加(a,ab,a+,a+b)

文件操作的追加(a,ab,a+,a+b)

  • a,追加,没有文件,创建文件,追加内容
s1=open('简单',mode='a',encoding='utf-8')
coun2=s1.write('wwwwwww')
print(coun2)
s1.close()
  • a+
with open('简单',encoding='utf-8',mode='a+')as f1:
    print(f1.write('222'))
    f1.seek(0)
    print(f1.read())
posted @ 2021-06-03 13:04  刘家小仙女  阅读(239)  评论(0编辑  收藏  举报