Python pycharm在表中读取和显示excel数据

时间:2017-09-15 15:23:42

标签: python excel upload grid pycharm

我是python的新手,目前正在开发一个python pycharm项目,它允许用户上传excel文件,从而在网格/表格中显示excel文件的数据。

from tkinter import *
from tkinter import filedialog
import csv

root = Tk()

flName = StringVar(None)

def browsefunc():
    filename = filedialog.askopenfilename(parent=root,title='Choose a file')
    flName.set(filename)

root.title("Graph function")

instruLabel = Label(root,text="Press Browse and input excel file::").pack()
browsebutton = Button(root, text="Browse", command=browsefunc)
displayData = Frame(root,);

browsePathEntry = Entry(root,textvariable=flName,state='disabled').pack()

browsebutton.pack()

pathlabel = Label(root)
pathlabel.pack()
root.mainloop()

有什么办法可以在网格/表格中显示excel文件的数据吗?请帮助,谢谢,祝你有个美好的一天。

0 个答案:

没有答案