[每日一講] Python系列:字典

#! /usr/bin/python
# coding:utf-8
"""
DATA STRUCTURE
    Container: Mapping (Another container is Set)
        —— Dict
Dict is the only one type of Mapping in python. It's unordered.
To define a dict, use symbol '{ }', stored by 'K-V' form.
So, while index method, such as List/Tuple, is invalid. we can use
Dict.

note: dict() is the function to create a new dictionary.

數據結構
    容器:映射(另一個容器是 Set '集')
        —— 字典
在 python 中字典是惟一的映射類型。它是無序的。
定義一個字典,使用符號'{ }',以 K-V 的形式存儲。
因此,當以列表/數組的方式索引不適用時,咱們用字典來代替。

注意:函數 dict() 是用來建立一個新的字典。
"""

#! /usr/bin/python
# coding:utf-8


class DictAction:

    def __init__(self):
        pass

    @staticmethod
    def dict_formatter():
        phone_book = {'Beth': '9102', 'Alice': '2341', 'Cecil': '3258'}
        # template as usual
        res = "Cecil's phone number is {Cecil}.".format_map(phone_book)
        print(res)

1 dict.clear()
刪除字典內全部元素
2 dict.copy()
返回一個字典的淺複製
3 dict.fromkeys(seq[, val])
建立一個新字典,以序列 seq 中元素作字典的鍵,val 爲字典全部鍵對應的初始值
4 dict.get(key, default=None)
返回指定鍵的值,若是值不在字典中返回default值
5 dict.has_key(key)
若是鍵在字典dict裏返回true,不然返回false
6 dict.items()
以列表返回可遍歷的(鍵, 值) 元組數組
7 dict.keys()
以列表返回一個字典全部的鍵
8 dict.setdefault(key, default=None)
和get()相似, 但若是鍵不存在於字典中,將會添加鍵並將值設爲default
9 dict.update(dict2)
把字典dict2的鍵/值對更新到dict裏
10 dict.values()
以列表返回字典中的全部值
11 pop(key[,default])
刪除字典給定鍵 key 所對應的值,返回值爲被刪除的值。key值必須給出。 不然,返回default值。
12 popitem()
隨機返回並刪除字典中的一對鍵和值。python

相關文章
相關標籤/搜索