摘要:
1 import easygui as g 2 import os 3 4 def show_result(path): 5 text='' 6 total=0 7 for each_ext in ext_dict: 8 total += ext_dict[each_ext] 9 text += '【%s】源文件有【%d... 阅读全文
posted @ 2017-02-19 23:17
道高一尺
阅读(402)
评论(0)
推荐(0)
摘要:
1 import easygui as g 2 import os 3 4 5 file_path = g.fileopenbox(default='F:\\') 6 with open(file_path) as f: 7 title = '内容显示' 8 file_name = os.path.basename(file_path) 9 msg... 阅读全文
posted @ 2017-02-19 19:11
道高一尺
阅读(359)
评论(0)
推荐(0)