Python教程

Python-Tkinter 使用for循环生成列表式Button及函数调用

本文主要是介绍Python-Tkinter 使用for循环生成列表式Button及函数调用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Tkinter是轻量级的图形化界面,在使用中我们可能遇到需要生成一串Button按钮的情况,如图:

如果一个一个操作就太麻烦了,但我们可以通过for循环列表的形式来实现
来看看以下例子:

from tkinter import *

def printf_button(f):

    print('press button:',f)

if __name__ == '__main__':

    root = Tk()

    ButtonList = [0,0,0,0,0,0,0]#创建储存按钮对象的列表
    ValueList = ['1','2','3','4','5','6','7']#创建按钮文字的列表
    sx = 20

    for i in range(0,7):
        ButtonList[i] = Button(width=6,height=2,text=ValueList[i],command=lambda f=ValueList[i]:printf_button(f))
        ButtonList[i].place(x=sx,y=20)
        sx+=60

    root.mainloop()

执行以上代码后,我们得到如下效果:

至此,我们成功实现生成列表式Button按钮
通过访问ButtonList的下标就可对按钮对象进行操作了

这篇关于Python-Tkinter 使用for循环生成列表式Button及函数调用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!