文件操作的写(w,wb,w+)

文件操作的写(w,wb,w+)

  • w
    • 没有文件,创建文件,写入内容
    • 如果文件存在,先清空文件内容,在写入新内容
f1=open('你简单,世界就是童话',encoding='utf-8',mode='w')
print(f1.write('当哭成为表演,就应当允许有人不哭!'))
f1.close()
得:17(文字个数)
  • wb
    • 如果要写入文件,先把文件转换成bytes格式,在写入
s1=open('timg (3).jpg',mode='rb')
count=s1.read()
s1.close()

f1=open('motuo.jpg',mode='wb')
print(f1.write(count))
f1.close()
  • w+ 写读
with open('简单',encoding='utf-8',mode='w+')as f1:
    f1.write('3月19日')
    f1.seek(0)
    print(f1.tell())
    print(f1.read())
posted @ 2021-06-03 13:03  刘家小仙女  阅读(622)  评论(0编辑  收藏  举报