def file_open(self):
filename=QFileDialog.getOpenFileName(self,'open file','./')
with open(filename[0],'r') as f:
my_txt=f.read()
def file_save(self):
filename=QFileDialog.getSaveFileName(self,'save file','./')
with open(filename[0],'w') as f:
my_txt=f.write(data)
以下为转载,折翼的飞鸟
http://www.cnblogs.com/wind-wang/p/5663575.html
https://www.cnblogs.com/wind-wang/p/5663539.html
python使用xlrd 操作Excel读写
一、安装xlrd模块
到python官网下载http://pypi.python.org/pypi/xlrd模块安装,前提是已经安装了python 环境。
二、使用介绍
1、导入模块
import xlrd
2、打开Excel文件读取数据
data = xlrd.open_workbook('excelFile.xls') 默认操作桌面上的excel
3、使用技巧
获取一个工作表