我正在尝试从我的tkinter登录系统运行另一个文件,但我找不到解决方法
我尝试过导入文件
.hide{
display:none;
}
我试图在文件为真时运行文件
答案 0 :(得分:2)
如果需要的话,一种骇人听闻的方式是这样的:
-conv_form
但是,如果可能,您应该避免这样做。通常,最好导入文件并从中运行功能。
答案 1 :(得分:2)
如果要单独运行文件而不导入文件,请执行此操作。
from os import system
#system calls a command from terminal
system("python <path to python file>")
答案 2 :(得分:0)
您可以使用execfile(filepath)来运行