- Python : 3.8.11
- OS : Ubuntu Kylin 20.04
- Conda : 4.10.1
- PyCharm : 2021.1.3 (Community Edition)
代码
"""
@Author : 行初心
@Date : 8/6/21
"""
from tkinter import *
def main():
def _test():
if input_str.get() != '木兰':
judge_res.set('输入的不是木兰')
return False
else:
judge_res.set('输入的是木兰')
return True
root = Tk()
content = StringVar()
input_str = Entry(root,
textvariable=content, # 内容可变
validate="focusout", # 失去焦点调用test函数
validatecommand=_test
)
input_str.grid(row=0, column=0, pady=10, padx=10)
# 靠西
Label(root, text="judge:").grid(row=1, column=0,
sticky=W, pady=10, padx=10)
judge_res = StringVar()
Label(root, textvariable=judge_res).grid(row=1, column=1,
pady=10, padx=10)
mainloop()
if __name__ == '__main__':
main()
运行结果
参考资料
学习推荐
- Python文档 - English
- Python文档 - 中文
- Python规范 PEP
- Python规范 google版
- Python 源码
- Python PEP
- 优麒麟
- 掘金平台
- gitee平台
Python具有开源、跨平台、解释型和交互式等特性,值得学习。
Python的设计哲学:优雅,明确,简单。提倡用一种方法,最好是只有一种方法来做一件事。
GUI可以选择PyQt5、PySide2、wxPython、PyGObject、wxWidgets等进行创作。
代码的书写要遵守规范,这样有助于沟通和理解。
每种语言都有独特的思想,初学者需要转变思维、踏实践行、坚持积累。