- 操作文件步骤
- 打开/创建 变量名 = open(filename,mode,encoding)
- 操作 变量名.read() 变量名.write()
- 关闭 变量名.close()
- with open(...) as file:
- json模块
- json.dumps(obj) json(lst,ensure_ascli=False,indent=4) 防止中文乱码,和提供缩进美化
- json.loads(obj)
- json.dump(obj,file)
- json.load(file)
- os模块
- getcwd()
- listdir()
- mkdir()
- makedirs()
- rmdir()
- removedirs()
- chdir()
- walk()
- remove()
- rename()
- rename()
- stat()
- startfile()
- os.path.basename()
- os.path.dirname()
- os.path.isdir()
- os.path.isfile()
- os.path.abspath()
- os.path.exists()