2016-08-16 139 views

回答

4
myDict['A'].remove(10) 

因为列表代替修改

0

您可以访问列表如下:

myDict['A'] 
[4, 8, 10, 9] 

然后将其删除或任何你需要的清单做:

mydict['A'].remove(10)