文件操作

Posted centwei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件操作相关的知识,希望对你有一定的参考价值。

 

#!/user/bin/env python
# -*- coding:utf-8 -*-
# 1.open()打开文件路径,后面跟 encoding解码。不指定解码的话,默认的是系统的编码 默认的是读r
# file1=open("测试",encoding="utf-8")
# data=file1.read()
# print(data)
# file2=open("测试","r",encoding="utf-8")
# data=file2.read()
# print(data)
# file2.close()
# # 2.w是open方法里的写属性。
# data2=open("测试1","w",encoding="utf-8")
# data2.write("来啦利来 来来拉里拉里 来阿里rrrrrrrr阿里阿拉")
# data2.close()
# 3.a是在最后追加。
# data=open("测试","a",encoding="utf-8")
# file2=data.write("我是新追加的内容 ,我是第二行追加 ")
# data.close()
# 4.open其它的用法wr + r+ a+
file=open("测试1","r+",encoding="utf-8")
data=file.read()
print(data)





















以上是关于文件操作的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

VSCode 如何操作用户自定义代码片段(快捷键)

代码片段 - Golang 实现集合操作

Apollo Codegen 没有找到生成代码的操作或片段

VSCode自定义代码片段——.vue文件的模板

操作栏标签片段中的片段?