鱼C论坛

 找回密码
 立即注册
查看: 2056|回复: 4

[已解决]tkinter Listbox的问题求助

[复制链接]
发表于 2023-3-28 09:12:32 | 显示全部楼层 |阅读模式

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

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

x
《0基础学PYTHON》P17_18.py

from tkinter import *

root = Tk()

#theLB = Listbox(root,setgrid=True)
theLB = Listbox(master,height =11)    #每次运行的时候 这行代码总是出问题。
theLB.pack()
for item in range(11):
    theLB.insert(END,item)

mainloop()

返回错误如下:
Traceback (most recent call last):
  File "D:/软件程序/编程练习/p17_18.py", line 8, in <module>
    theLB = Listbox(master,height =11)
NameError: name 'master' is not defined. Did you mean: 'aiter'?


请问这个情况怎么处理呢? 前面还有个例子也是有master这个参数的问题 一直没有解决。
最佳答案
2023-3-28 09:18:31
from tkinter import *

root = Tk()

#theLB = Listbox(root,setgrid=True)
theLB = Listbox(root,height =11)    # 把 master 换成 root
theLB.pack()
for item in range(11):
    theLB.insert(END,item)

mainloop()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-3-28 09:18:31 | 显示全部楼层    本楼为最佳答案   
from tkinter import *

root = Tk()

#theLB = Listbox(root,setgrid=True)
theLB = Listbox(root,height =11)    # 把 master 换成 root
theLB.pack()
for item in range(11):
    theLB.insert(END,item)

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

使用道具 举报

发表于 2023-3-28 20:05:22 | 显示全部楼层
from tkinter import *

root = Tk()

#theLB = Listbox(root,setgrid=True)
theLB = Listbox(root,height=11)    # 没有 maser,换成 root
theLB.pack()
for item in range(11):
    theLB.insert(END,item)

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

使用道具 举报

 楼主| 发表于 2023-3-30 08:46:11 | 显示全部楼层

那这个master,并不是本身这个单词作为参数的,应该指的是本段代码中的root?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-3-30 12:13:32 | 显示全部楼层
转行做码农 发表于 2023-3-30 08:46
那这个master,并不是本身这个单词作为参数的,应该指的是本段代码中的root?

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

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-12-24 01:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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