我是靠谱客的博主 虚拟秀发,最近开发中收集的这篇文章主要介绍(windows下)python2.x有关Tkinter,simpledialog,messagebox的问题,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
(windows下)python2.x有关Tkinter,simpledialog,messagebox的问题
python3是tkinter,python2中是Tkinter
#python2下
from Tkinter import *
import tkSimpleDialog as dl
import tkMessageBox as mb
root=Tk()
w=Label(root,text="Label Title")
w.pack()
mb.showinfo("welcome","Welcome Message")
guess=dl.askinteger("Number","Enter a number")
output='This is output message'
mb.showinfo("Output:",output)
官方文档地址:https://docs.python.org/2/library/tkinter.html#module-Tkinter
最后
以上就是虚拟秀发为你收集整理的(windows下)python2.x有关Tkinter,simpledialog,messagebox的问题的全部内容,希望文章能够帮你解决(windows下)python2.x有关Tkinter,simpledialog,messagebox的问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复