摘要: # coding=utf-8 from os import listdir if __name__ =="__main__": d=u"D:\\files\\" fns = (fn for fn in listdir(d) if fn.endswith(".csv")) for fn in fns: with open(d+fn, 'rb+')... 阅读全文
posted @ 2019-05-06 17:44 leechg 阅读(805) 评论(0) 推荐(0)