Python 字典(Dictionary) type()方法

2021-09-06 14:15 更新

Python 字典(Dictionary) type()方法


描述

Python 字典(Dictionary) type() 函數(shù)返回輸入的變量類型,如果變量是字典就返回字典類型。

語(yǔ)法

type()方法語(yǔ)法:

type(dict)

參數(shù)

  • dict -- 字典。

返回值

返回輸入的變量類型。

實(shí)例

以下實(shí)例展示了 type()函數(shù)的使用方法:

#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 7};
print "Variable Type : %s" %  type (dict)

以上實(shí)例輸出結(jié)果為:

Variable Type : <type 'dict'>
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)