Python3 tkinter基础 Radiobutton indicatoron 长条形 pack 充满一行
2021-05-23 10:29
标签:uid lock tin The guid 解释型 inf read 交互式 ? ? ? 鼠标拉大窗体后的效果 ? ? ? Python具有开源、跨平台、解释型和交互式等特性,值得学习。 Python3 tkinter基础 Radiobutton indicatoron 长条形 pack 充满一行 标签:uid lock tin The guid 解释型 inf read 交互式 原文地址:https://www.cnblogs.com/xingchuxin/p/9735673.html
code
"""
@Author : 行初心
@Date : 18-10-1
@Blog : www.cnblogs.com/xingchuxin
@GitHub : github.com/GratefulHeartCoder
"""
from tkinter import *
def main():
root = Tk()
v = IntVar()
v.set(3) # 如果1,那么儒家被默认选中
# 如果2,那么道家被默认选中
# 如果3,那么佛家被默认选中
# v与value的关系
rb1 = Radiobutton(root, text=‘儒家‘, variable=v,
value=1, indicatoron=False)
rb1.pack(fill=X)
rb2 = Radiobutton(root, text=‘道家‘,
variable=v, value=2, indicatoron=False)
rb2.pack(fill=X)
rb3 = Radiobutton(root, text=‘佛家‘,
variable=v, value=3, indicatoron=False)
rb3.pack(fill=X)
mainloop()
if __name__ == ‘__main__‘:
main()
result
reference
resource
Python的设计哲学:优雅,明确,简单。提倡用一种方法,最好是只有一种方法来做一件事。
GUI可以选择PyQt5、PySide2、wxPython、PyGObject、wxWidgets等进行创作。
代码的书写要遵守规范,这样有助于沟通和理解。
每种语言都有独特的思想,初学者需要转变思维、踏实践行、坚持积累。
文章标题:Python3 tkinter基础 Radiobutton indicatoron 长条形 pack 充满一行
文章链接:http://soscw.com/index.php/essay/88187.html