51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

基于os库用python打开/新建/读取/写入文件

本文将简单介绍如何基于os库用python打开/新建/读取/写入文件的操作

之前简单介绍过:基于os库用python批量重命名文件

# open / read  'r'
# f = open('text','r')
# content = f.read()
# print(content)
# f.close()
# # write  'w'
# f = open('text','w')
# f.write("dajidali")
# f.close()
# 写入----》相当于新建文件
f = open('hongda','w')
f.write("jiang")
f.close()
# with 用
with open('hongda','r') as f1,open('text','w') as f2:
    content = f1.read()
    f2.write(content)
    print(content)
# copy
# read  write

更多精彩内容

赞(0)
未经允许不得转载:工具盒子 » 基于os库用python打开/新建/读取/写入文件