📜  python 简单输入弹出窗口 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:09.811000             🧑  作者: Mango

代码示例1
#pip install easygui
import easygui
Res1= easygui.enterbox(msg="Your name?")
Res2= easygui.integerbox(msg="Enter price", upperbound=999)
print(Res1, type(Res1), Res2, type(Res2)) 
# Prints--> Bob  150