当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。