當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python dict()用法及代碼示例


Python dict() 函數

dict() 函數是一個庫函數,用於創建一個帶有關鍵字(Ids)和值(s)的字典,它接受一組帶有關鍵字、值的值並返回一個字典。

用法:

    dict(keyword1=value1, keyword2=value2, ...)

參數: keyword1=value1, keyword2=value2, ...– 一組關鍵字和值來創建字典。

返回值: dict– 返回字典。

例:

    Input:
    # creating dictionary 
    std_info = dict(name = "Amit shukla", age = 21, course = "B.Tect (CS)")

    # printing the value of dictionary 
    print("std_info:", std_info)
    
    Output:
    std_info:{'course':'B.Tect (CS)', 'age':21, 'name':'Amit shukla'}

創建字典的 Python 代碼

# python code to demonstrate example of 
# dict() number

# creating dictionary 
std_info = dict(name = "Amit shukla", age = 21, course = "B.Tect (CS)")

# printing type 
print("type of std_info:", type(std_info))

# printing the value of dictionary 
print("std_info:", std_info)

輸出

type of std_info: <class 'dict'>
std_info:{'course':'B.Tect (CS)', 'age':21, 'name':'Amit shukla'}


相關用法


注:本文由純淨天空篩選整理自 dict() function with example in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。