python中删除字典键的方法:以字典为“my_dict = {"name":"student", "age":12}”为例,输入“del my_dict["name"]”命令即可将字典中的键删除。
my_dict = {"name":"student", "age":12} del my_dict["name"]
python中删除字典键的方法:以字典为“my_dict = {"name":"student", "age":12}”为例,输入“del my_dict["name"]”命令即可将字典中的键删除。
my_dict = {"name":"student", "age":12} del my_dict["name"]
© 2021 Python学习网 苏ICP备2021003149号-1