【背景】
Python中,已知对应的key,需要从python中的一个dict中,移除一个健值对
搜:
python dict remove key value
参考:
Best way to remove an item from a Python dictionary? – Stack Overflow
-》
pop
或
del?
python – Delete an element from a dictionary – Stack Overflow
-》
del
【总结】
直接用del即可,将某个key和value,从dict字典变量中移除:
# remove offline user from current dict del gOnlineUserLocationDict[eachOfflineUser.id] |