python图形界面编程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python图形界面编程相关的知识,希望对你有一定的参考价值。
EasyGui(easygui-docs-0.96\tutorial\index.html)
import easygui as g import sys while 1: g.msgbox(‘mess1‘) msg = ‘ms2‘ title = ‘ms3‘ choices = [‘a‘,‘b‘,‘c‘,‘d‘] choice = g.choicebox(msg, title, choices) g.msgbox(‘your choice is‘+str(choice),‘result‘) msg = ‘try again‘ title = ‘select‘ if g.ccbox(msg, title): pass else: sys.exit(0)
以上是关于python图形界面编程的主要内容,如果未能解决你的问题,请参考以下文章