鱼C论坛

 找回密码
 立即注册
查看: 2582|回复: 8

[已解决]使用Tkinter时我想动态生成n个输入框时出现问题

[复制链接]
发表于 2020-10-31 04:28:11 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
我在b站上学龄两个月,是个萌新,我每次想要生成一个新的输入框,必须先初始化Entry生成一个实例,但是这个实例变量必须命名,如何在for循环内给新生成的这个实例变量命不一样的名字,我用了locals,但无法运行
我写了一点点的代码如下:
for i in range(a):
    Label(root2, text = "请输入第%d个电阻的阻值:"%(i + 1)).grid(row = i, column = 3)
    locals()['g'+str(i)] = Entry(root)
    ('g'+str(i)).grid(row = i, column = 4)
    Label(root2, text="第一个结点编号:" % (i + 1)).grid(row=i, column = 5)
    locals()['m' + str(i)] = Entry(root)
    ('m' + str(i)).grid(row = i, column = 6)
    Label(root2, text="第二个结点编号:" % (i + 1)).grid(row=i, column = 7)
    locals()['n' + str(i)] = Entry(root)
    ('n' + str(i)).grid(row = i, column = 8)
mainloop()
最后几行就是问题所在
最佳答案
2020-10-31 06:11:46
from tkinter import *
root=Tk()
a=5

for i in range(a):
    Label(root, text = "请输入第%d个电阻的阻值:"%(i + 1)).grid(row = i, column = 3)
    locals()['g'+str(i)] = Entry(root)
    locals()['g'+str(i)].grid(row = i, column = 4)
    Label(root, text="第%d一个结点编号:" % (i + 1)).grid(row=i, column = 5)
    locals()['m' + str(i)] = Entry(root)
    locals()['m' + str(i)].grid(row = i, column = 6)
    Label(root, text="第%d二个结点编号:" % (i + 1)).grid(row=i, column = 7)
    locals()['n' + str(i)] = Entry(root)
    locals()['n' + str(i)].grid(row = i, column = 8)
mainloop()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-10-31 04:28:44 | 显示全部楼层
求问我该怎么改
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-31 06:11:46 | 显示全部楼层    本楼为最佳答案   
from tkinter import *
root=Tk()
a=5

for i in range(a):
    Label(root, text = "请输入第%d个电阻的阻值:"%(i + 1)).grid(row = i, column = 3)
    locals()['g'+str(i)] = Entry(root)
    locals()['g'+str(i)].grid(row = i, column = 4)
    Label(root, text="第%d一个结点编号:" % (i + 1)).grid(row=i, column = 5)
    locals()['m' + str(i)] = Entry(root)
    locals()['m' + str(i)].grid(row = i, column = 6)
    Label(root, text="第%d二个结点编号:" % (i + 1)).grid(row=i, column = 7)
    locals()['n' + str(i)] = Entry(root)
    locals()['n' + str(i)].grid(row = i, column = 8)
mainloop()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-31 06:12:19 | 显示全部楼层
是这样子的吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-10-31 08:21:04 | 显示全部楼层
为何要给它起不一样的名字呢?
直接获取它的值,然后存到一个列表里面不就好了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 2 反对 0

使用道具 举报

发表于 2020-10-31 09:30:45 | 显示全部楼层
上次论坛有个帖子,要循环添加按钮,获取文件路径
可以参考下
import tkinter as tk
from tkinter.filedialog import *

root = tk.Tk()
root.geometry('500x300')
iCount = input('請輸入文件個數:')
name_list = ['a', 'b', 'c', 'd']  # 定义对象名字列表


class file_name():  # 定义类,用来创建循环对象
    def __init__(self, i):
        self.sFilePath = tk.StringVar()
        self.name = f'name{i}'
        print(self.name)

    def btn_com(self):
        self.sFilePath.set(askopenfilename())


for i in range(1, int(iCount) + 1):
    name_list[i - 1] = file_name(i)  # 用对象名字列表内元素,创建循环对象
    name_list[i - 1].name = tk.Button(root, text='請選擇文件' + str(i), command=name_list[i - 1].btn_com)
    name_list[i - 1].name.grid(row=i - 1, column=0)
    tk.Entry(root, textvariable=name_list[i - 1].sFilePath, width=50).grid(row=i - 1, column=1)

file_name_list = ['a', 'b', 'c', 'd']
for i in range(1, int(iCount) + 1):
    name_list[i - 1].name['text'] = file_name_list[i - 1]
mainloop()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-10-31 23:55:18 | 显示全部楼层
疾风怪盗 发表于 2020-10-31 09:30
上次论坛有个帖子,要循环添加按钮,获取文件路径
可以参考下

谢谢大佬
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-10-31 23:56:31 | 显示全部楼层
qiuyouzhi 发表于 2020-10-31 08:21
为何要给它起不一样的名字呢?
直接获取它的值,然后存到一个列表里面不就好了

请问具体是如何实现的呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-11-1 00:26:07 | 显示全部楼层
qiuyouzhi 发表于 2020-10-31 08:21
为何要给它起不一样的名字呢?
直接获取它的值,然后存到一个列表里面不就好了

十分感谢大佬的思路
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 00:36

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表