摘要: # coding=utf-8 import os # 操作文件和目录 print("1", os.getcwd()) # 获取当前文件的目录 print("2", os.path.realpath(__file__)) # __file__表示当前你正在编辑的文件 # os.mkdir('test_lemon.txt') # 新建目录 # os.rmdir('python3.4... 阅读全文
posted @ 2018-05-29 22:57 Admin_sys 阅读(176) 评论(0) 推荐(0) 编辑