Python字典type()函式

2019-10-16 23:05:40

Python字典type()函式返回傳遞變數的型別。 如果傳遞變數是字典,那麼它將返回字典型別。

語法

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

type(dict)

引數

  • dict - 這是物件(字典,列表等),需要求出型別的物件。

返回值

  • 此方法返回傳遞變數的型別。

範例

以下範例顯示type()方法的用法 -

#!/usr/bin/python3

dict = {'Name': 'Maxsu', 'Age': 7, 'Class': 'First'}
print ("Variable Type : %s" %  type (dict))

當執行上面的程式,它產生以下結果 -

Variable Type : <type 'dict'>