我在一个文件夹中有两个.py文件(Main_program.py和HMI.py)。第一个是包含一个大循环(递增)的代码,该循环在开头带有打印,显示了代码执行的过程(10%,20%等)。第二个文件是一个接口,其中包含一个执行Main_program.py的按钮。我想在界面中创建一个进度条,该进度条将与第一个代码中打印件的演变相关联。但是我们该怎么做呢?非常感谢。
HMI.py:
import tkinter
from tkinter import *
from tkinter import ttk
from Main_program import run_progessbar
...
root = Tk()
...
jj=0
progessBar = ttk.Progressbar(root, orient="horizontal",length=170,
style='black.Horizontal.TProgressbar',
mode='determinate', variable=jj)
progessBar.place(x=1060,y=180
...
Main_program.py:
def run_progessbar():
import numpy as np
import matplotlib
...
global jj #without function here jj=0
while ii > 0 and ii <= np.floor(count / Nbtot):
if np.remainder(ii,Ni / (10*Nbtot)) == 0:
jj=jj + 10
print(str(jj)+'%')
...
ii=ii+1
#in the shell
global jj
SyntaxError: name 'jj' is used prior to global declaration
答案 0 :(得分:0)
摩押,
您已经尝试过类似的方法吗?
jj = 0
self.progessBar = ttk.Progressbar(self.frame, orient="horizontal",
length=286, mode="determinate",
value=jj).pack(pady=10)
def run_progessbar(self):
global jj
while ii > 0 and ii <= np.floor(count / Nbtot):
...
jj=jj + 10
print(str(jj)+'%')
...
ii=ii + 1
我找到了两个有用的链接: