Rumah > Artikel > pembangunan bahagian belakang > python变量类型-字典的实战运用与分析
这篇文章我们来学习一下python变量类型之中的字典,这是我们在实战之中常常会使用到的一个变量类型。希望这篇文章能给刚刚接触到python的你提供一些帮助。
python字典:
字典(dictionary)是除列表以外python之中最灵活的内置数据结构类型。列表是有序的对象集合,字典是无序的对象集合。
两者之间的区别在于:字典当中的元素是通过键来存取的,而不是通过偏移存取。
字典用"{ }"标识。字典由索引(key)和它对应的值value组成。
我们可以使用一个实例来进行理解:
#!/usr/bin/python # -*- coding: UTF-8 -*- dict = {} dict['one'] = "This is one" dict[2] = "This is two" tinydict = {'name': 'john','code':6734, 'dept': 'sales'} print dict['one'] # 输出键为'one' 的值 print dict[2] # 输出键为 2 的值 print tinydict # 输出完整的字典 print tinydict.keys() # 输出所有键 print tinydict.values() # 输出所有值
而以上实例所输出的结果为:
This is one This is two {'dept': 'sales', 'code': 6734, 'name': 'john'} ['dept', 'code', 'name'] ['sales', 6734, 'john']
经过上述实例来理解python中的字典,希望这篇文章能给刚刚接触到python的你提供一些帮助。
Atas ialah kandungan terperinci python变量类型-字典的实战运用与分析. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!