使用Tkinter创建进度条

时间:2019-03-21 14:44:25

标签: python pandas tkinter

我正在尝试制作一个简单的进度条,该进度条仅向我显示程序运行时的进度。我编写的代码如下:

from tkinter import *
from tkinter import ttk

root = Tk()
progress = ttk.Progressbar(root, orient = 'horizontal', length = 120)
progress.pack()
progress.config(mode = 'indeterminate', maximum = 100, value = 5)
progress.start()


(Program goes here)

但是我遇到以下错误

BadZipFile: File is not a zip file

at
df99 = pd.read_excel(os.path.commonpath(excel_file), sheet_name='Sheet1',skiprows=11, usecols=[2,3,6,8])

这是什么原因造成的?我不太明白这个错误。

0 个答案:

没有答案