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'}
相關用法
- Python dictionary values()用法及代碼示例
- Python dir()用法及代碼示例
- Python divmod()用法及代碼示例
- Python Wand distort()用法及代碼示例
- Python datetime astimezone()用法及代碼示例
- Python datetime timetuple()用法及代碼示例
- Python datetime timetz()用法及代碼示例
- Python datetime isocalendar()用法及代碼示例
- Python date toordinal()用法及代碼示例
- Python date replace()用法及代碼示例
- Python date strftime()用法及代碼示例
- Python datetime date()用法及代碼示例
- Python datetime isoformat()用法及代碼示例
- Python Tkinter destroy()用法及代碼示例
- Python datetime __str__()用法及代碼示例
- Python delattr() and del()用法及代碼示例
- Python date weekday()用法及代碼示例
- Python date isoweekday()用法及代碼示例
- Python datetime.timedelta()用法及代碼示例
- Python date isocalendar()用法及代碼示例
注:本文由純淨天空篩選整理自 dict() function with example in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。