2016-08-16 186 views

回答

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

因爲列表代替修改

0

您可以訪問列表如下:

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

然後將其刪除或任何你需要的清單做:

mydict['A'].remove(10)