python之字典
字典的定义
顾名思义,可以通过索引得到值。类似有很多不同的property,每个property对应各自的值。如:
1 | 'name':'inv','type':'stdcell','length':'2um'} cell = { |
我们还可以调用字典类的构造函数dict(**kwargs)来定义一个字典,如:
1 | 'inv',type='stdcell',length='2um') cell = **dict**(name= |
如何查字典
可以用方括号或get()函数。
1 | print**(cell['type']) ##方法1 ** |
字典中的元素个数
1 | 'name':'inv','type':'stdcell','length':'2um'} cell = { |
修改元素
1 | 'name':'inv','type':'stdcell','length':'2um'} cell = { |
或者
1 | 'name':'nand2','height':'2um'} cell_add = { |
删除元素
1 | 'name': 'nand2', 'type': 'stdcell', 'length': '3um', 'height': '2um'} cell = { |
提取所有健或值
1 | 'name': 'inv', 'type': 'stdcell', 'length': '3um'} cell = { |
字典与列表的不同:
| item | 字典 | 列表 |
| ——– | :——————————: | :—————————————————–: |
| 序列 | 无序,通过键来索引 | 有序,用位置来索引。支持序列操作,如slice |
| 可变长度 | 是 | 是 |
| 可修改 | 是 | 是 |
| 常用函数 | get,keys,values,pop,update,clear | count,extend,index,insert,pop,remove,reverse,sort,clear |
原文作者: ICtechO
原文链接: http://www.ictech.xyz/2020/python-dict/
版权声明: 转载请注明出处(必须保留作者署名及链接)