如何用tkin编辑词典列表

2024-04-19 13:53:42 发布

您现在位置:Python中文网/ 问答频道 /正文

我想有一种方法,让用户编辑列表,他们已经与编辑选项卡,我在工具栏上。我不知道我该如何接近这条鲸鱼仍然使用字典的列表

完整代码https://pastebin.com/6VAnZTyi

#************for defining what is in the list*******************    
class My_QueryString(tkinter.simpledialog._QueryString):

      def body(self, master):
          self.bind('<KP_Enter>', self.ok) # KeyPad Enter
          super().body(master)

def list_data(title, prompt, **kw):
    d = My_QueryString(title, prompt, **kw)
    return d.result
root = Tk()

#list
def liststagering(New_List):
   for item in New_List:
      print(item)
def New_List():
    new_list = myaskstring("list", "what do you want to name this list")
    List_Data = list_data("list","what should be in this list")
    if str(new_list):
        print(new_list)
        newList = dict()
        newList['title'] = new_list
        newList['listData'] = List_Data
        List_MASTER.append(newList)
        print("title : "+new_list)
        print(List_Data)

List_MASTER = []




lll=print (List_MASTER)
def printtext():


    T = Text(root)
    T.pack(expand=True, fill='both')
    printData = ""
    print(List_MASTER)
    for i in range(len(List_MASTER)):
        printData += List_MASTER[0]['title'] +"\n"+List_MASTER [i]['listData'] + "\n";
    T.insert(END,

            printData
            ,

            )

    for printData in T:
        T.delete(0,END)

Tags: inselfmasternewfortitledefwhat
1条回答
网友
1楼 · 发布于 2024-04-19 13:53:42

在列表中编辑词典很简单。你知道吗

首先,您需要通过调用字典所在列表的索引来获取字典。你知道吗

然后你可以像平常一样编辑字典。你知道吗

看看下面的例子。 我已经写了几个循环来阅读或编辑列表中的词典。你知道吗

list_of_dicts = [{"name":"Mike","age":30}, {"name":"Dave","age":22}, {"name":"Amber","age":24}]


for ndex, item in enumerate(list_of_dicts):
    # This will print the index number and dictionary at that index.
    print(ndex, item)


for item in list_of_dicts:
    # This will print each persons name and age of each dict in the list.
    print("The persons name is {} and they are {} years old!".format(item["name"], item["age"]))


for item in list_of_dicts:
    # this will update the age of each person by 1 year.
    item["age"] += 1
print(list_of_dicts)


# This will change Daves name to Mark.
list_of_dicts[1]["name"] = "Mark"
print(list_of_dicts[1])

如果运行上述脚本,则应在控制台中获得以下结果:

0 {'name': 'Mike', 'age': 30}
1 {'name': 'Dave', 'age': 22}
2 {'name': 'Amber', 'age': 24}
The persons name is Mike and they are 30 years old!
The persons name is Dave and they are 22 years old!
The persons name is Amber and they are 24 years old!
[{'name': 'Mike', 'age': 31}, {'name': 'Dave', 'age': 23}, {'name': 'Amber', 'age': 25}]
{'name': 'Mark', 'age': 23}

相关问题 更多 >