python如何修改字典中的值

1、修改字典中的值,可以依次指定字典名称,用方括号括起的键和与键相关的新值。

>>> bullet = {'color': 'green', 'points': '5', 'bullet_x': 25, 'bullet_y': 45}
>>> bullet['bullet_x']=10
>>> print(bullet)
{'color': 'green', 'points': '5', 'bullet_x': 10, 'bullet_y': 45}
>>>

2、对于字典中不再需要的信息,可以用del语句彻底删除相应的键值对。

>>> bullet = {'color': 'green', 'points': '5', 'bullet_x': 25, 'bullet_y': 45}
>>> bullet['bullet_x']=10
>>> print(bullet)
{'color': 'green', 'points': '5', 'bullet_x': 10, 'bullet_y': 45}
>>> del bullet['color']
>>> print(bullet)
{'points': '5', 'bullet_x': 10, 'bullet_y': 45}
>>>

python函数形参如何设置默认值:在编写函数时,可以为每个形参指定默认值。1、Python在调用函数中为形参提供实参时,将使用指定的实参值,否则将使用形参的默认值。2、在使用默认值时,形参列表中必须先列出没有默认值的形参,然后列出具有默认 ...