- 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():
root = Tk()
menu_bar = Menu(root)
user_choice = IntVar()
# 杏仁 默认选中
user_choice.set(1)
file_menu = Menu(menu_bar, tearoff=False)
menu_bar.add_cascade(label='果部', menu=file_menu)
file_menu.add_radiobutton(label='杏仁', variable=user_choice, value=1)
file_menu.add_radiobutton(label='乌梅', variable=user_choice, value=2)
root.config(menu=menu_bar)
mainloop()
if __name__ == '__main__':
main()
运行结果
参考资料
学习推荐
- Python文档 - English
- Python文档 - 中文
- Python规范 PEP
- Python规范 google版
- Python 源码
- Python PEP
- 优麒麟
- 掘金平台
- gitee平台
Python具有开源、跨平台、解释型和交互式等特性,值得学习。
Python的设计哲学:优雅,明确,简单。提倡用一种方法,最好是只有一种方法来做一件事。
GUI可以选择PyQt5、PySide2、wxPython、PyGObject、wxWidgets等进行创作。
代码的书写要遵守规范,这样有助于沟通和理解。
每种语言都有独特的思想,初学者需要转变思维、踏实践行、坚持积累。