Python字典type()
函式返回傳遞變數的型別。 如果傳遞變數是字典,那麼它將返回字典型別。
語法
以下是type()
方法的語法 -
type(dict)
引數
返回值
範例
以下範例顯示type()
方法的用法 -
#!/usr/bin/python3
dict = {'Name': 'Maxsu', 'Age': 7, 'Class': 'First'}
print ("Variable Type : %s" % type (dict))
當執行上面的程式,它產生以下結果 -
Variable Type : <type 'dict'>