Python字典的基本操作

Python的字典

1.创建字典

.使用花括号,也使用内建 函数dict

>>> zidian =dict(color='red', points='5')
>>> zidian= {'color':'red', 'points':'5'}
>>> zidian1 = dict(color='red', points='5')

2.添加和修改字典

我们通过dict[key] = value来实现

# 修改字典
>>> zidian =dict(color='red', points='5')
>>> zidian = {'color': 'red', 'points': '5'}
>>> zidian['color'] = 'blue'

# 添加字典
>>> zidian1 = {'color': 'red', 'points': '5'}
>>> zidian1['position'] = 50

3.查找功能

1.通过dict.items()进行遍历,分别获取字典中的key和value
2.通过dict.keys(),遍历字典中所有的键
3.通过dict.values(),遍历字典中所有的值

>>> alien1 = {'color':'green','point':5}
>>> alien2 = {'color':'yellow','point':10}
>>> alien3 = {'color':'black','point':15}
>>> aliens = [alien1, alien2, alien3]
>>> for alien in aliens:
>>>     print(alien)
{'color': 'green', 'point': 5}
{'color': 'yellow', 'point': 10}
{'color': 'black', 'point': 15}

4.删除字典中的数据

字典中的数据可以删除,删除字典中的值是通过键来完成,使用del语句。

alien_0={"color":"green","points":5}
del alien_0["points"]
print(alien_0)

你可能感兴趣的:(python)