我正在用pysimplegui和pytube编写一个应用程序。我有这样的代码 file1.py
```
import PySimpleGUI as sg
class Gui:
def init(self):
layout = [[sg.Text('My one-shot window.')],
[sg.InputText()],
[sg.Submit(), sg.Cancel()]]
window = sg.Window('Window Title', layout)
event, values = window.read()
window.close()
我想用 `window` 在功能中位于 `file2.py` .
def func():
window['-key-'].update_bar()
我应该如何正确地导入它,以便像在上面的函数中那样使用它 `file2.py` ?
暂无答案!
目前还没有任何答案,快来回答吧!