Python.Tkinter编程实例代码多多学习

源代码在线查看: message.py

软件大小: 3283 K
上传用户: hard
关键词: Tkinter Python 编程实例 代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				from Tkinter import *
				
				root = Tk()
				root.option_readfile('optionDB')
				root.title('Message')
				Message(root, text="Exactly.  It's my belief that these sheep are laborin' "
				      "under the misapprehension that they're birds.  Observe their "
				      "be'avior. Take for a start the sheeps' tendency to 'op about "
				      "the field on their 'ind legs.  Now witness their attmpts to "
				      "fly from tree to tree.  Notice that they do not so much fly "
				      "as...plummet.", bg='royalblue',
				      fg='ivory', relief=GROOVE).pack(padx=10, pady=10)
				root.mainloop()
				
							

相关资源