Python基础---EASYGUI小游戏

#导包见pip安装
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 = "请选择技能"
        
        #show对话框和提示信息
        if g.ccbox(msg, title):     
                pass                         #选择继续  
        else:
                sys.exit(0)                  # 选择取消

 

你可能感兴趣的:(Python基础)