你使用dict
它有一个unique key value par properties
为什么当你和新它会更新最后添加键值 par 如果没有任何键它会添加新键
如果您确实要替换最后一个元素,它将起作用list of list
然后尝试以下方式可能是您的问题解决
list_var = []
list_var.append(['Jay',1])
print(list_var) #[['Jay',1]]
#you can append list using append method so list is ordered collection so add another one
list_var.append(['Raj',1])
print(list_var) #[['Jay',1],['Raj',1]]
#add another
list_var.append(['Jay',3])
print(list_var) #[['Jay',1],['Raj',1],['Jay',3]]
#using for you will print
for name,score in list_var:
print(name,score)
#or you will access by index
list_var[0] #[['Jay',1]
或者您可以通过map filter reduce方法进行操作
使用这些东西,如果有任何问题让我知道,如果它有效,请告诉我