message.py
来自「Python.Tkinter编程实例代码多多学习」· Python 代码 · 共 15 行
PY
15 行
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()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?