2018年3月20日
摘要: import os os.chdir("C:/") path = os.getcwd() print(path) f = open("sql.csv") # print(f.read()) f.seek(0) lst = [] n = 0 for line in f.readlines(): if n > 0: fullname = line.rsplit('/', 1)... 阅读全文
posted @ 2018-03-20 11:06 氵斤 阅读(1294) 评论(0) 推荐(0) 编辑