位置:首頁 > 腳本語言 > Python教學 > Python dict.type()方法

Python dict.type()方法

type()方法返回傳遞變量的類型。如果傳遞變量是字典那麼它將返回一個字典類型。

語法

以下是type()方法的語法:

type(dict)

參數

  • dict -- 這是字典

返回值

此方法返回傳遞變量的類型。

例子

下麵的例子顯示type()方法的使用

#!/usr/bin/python

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

當我們運行上麵的程序,它會產生以下結果:

Variable Type : <type 'dict'>