📜  带列表的 python 字典 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:27.050000             🧑  作者: Mango

代码示例1
dictionary = {"one": [1, 2, 3, 4, 5], "two": "something"}
print(dictionary["one"][2])


3