Python easyGUI 文件浏览 显示文件内容

 #提供一个文件浏览夹。让用户选择需要打开的文件,打开并显示文件内容:

 import easygui as g
import os
msg='浏览文件并打开'
title='测试'
default='D:\Python练习\*'
fileType='全部文件'
filePath=g.fileopenbox(msg,title,default,fileType) with open(filePath) as f:
title=os.path.basename(filePath)
msg='文件%s的内容如下:'%title
txt=f.read()
g.textbox(title,msg,txt)
上一篇:jQuery幸运大转盘_jQuery+PHP抽奖程序的简单实现


下一篇:向txt文件中写入内容(覆盖重写与在末尾续写+FileOutputStream与FileWriter)(转发:https://blog.csdn.net/bestcxx/article/details/51381460)