发布时间:2019-08-28 09:07:10编辑:auto阅读(2010)
GUI工具包:EasyGui
import easygui as g
import sys
while 1:
g.msgbox("欢迎来到一个神奇的世界")
msg = "请问你想得到什么?"
title = "请选择"
choices = ["金钱", "时间", "生命", "未来"]
choice = g.choicebox(msg, title, choices)
g.msgbox("你的选择是:" + str(choice),"结果")
msg = "请问你想重新选择吗?"
title = "请选择"
if g.ccbox(msg, title):
pass
else:
sys.exit(0)
上一篇: Python(2)
下一篇: python 学习笔记第二章:安装pyt
51371
50844
41432
38228
32724
29622
28439
23345
23287
21616
1705°
2431°
2032°
1969°
2315°
1996°
2706°
4530°
4347°
3100°