如何将easygui输出到easygui对话框,而不是调用x.py的终端。
如果我从终端运行我的python脚本,easygui对话框会出现并运行,但输出显示在终端而不是easygui。
答案 0 :(得分:2)
easygui.msgbox('hello world', title='hello world', ok_button = 'yes')
这是一种释放easygui msg
的方法答案 1 :(得分:1)
结果需要从预先声明的变量传递到easygui语法中。例如......
somemsg = "Some message"
sometitle = "Some title"
someresult = "Some result or text to include in easygui frame"
easygui.textbox(msg=somemsg, title=sometitle, text=someresult)
答案 2 :(得分:0)
from easygui import *
name = "josh"
image = "gfg.png"
message = ("hello, my name is",name)
msgbox(message)
textbox(message)
input = buttonbox("message",image = image,choices=("hello","goodbye"))
除了Enterbox之外,我根本不需要使用任何其他easygui框。
msgbox输出一条简单的小消息
文本框用于较大的输出
按钮框提供输入选项,以响应输出。它还允许输出图像。