如何在字典Python中添加列表作为值

时间:2019-03-17 16:46:10

标签: python dictionary

我正在尝试创建一个字典,其中的键是字符串,值是列表。

l1 = ['a', 'b', 'c']

,我想在for循环的每次迭代中添加与该列表相似的列表。

我已经尝试过了

dicc['first'].append(l1)

出口应该是这样的:

dicc={'first': ['a', 'b', 'c']}

我总是遇到相同的错误:list indices must be integers or slices, not str

我该怎么办?

1 个答案:

答案 0 :(得分:4)

在这种情况下,您必须为字典中的键分配一个对象列表:

report: url: ${REPORT_HOST:"http://localhost:8080/"}