今天這篇文章中我們來了解一下python字典函數,在這篇文章之中我會對Python type函數進行說明,以及其的作用進行展示。好了廢話不多說,我們開始進入文章吧。
什麼是Python type 函數?
#描述
Python 字典(Dictionary) type() 函數傳回輸入的變數類型,如果變數是字典就回傳字典類型。
語法
type()方法語法:
type(dict)
參數
傳回值
傳回輸入的變數類型。Python type 函數使用實例
以下實例展示了type()函數的使用方法:#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7}; print "Variable Type : %s" % type (dict)以上實例輸出結果為:
Variable Type : <type 'dict'>以上就是這篇文章所講的全部內容,python中字典內建函數 type函數。希望所說的內容以及所舉的例子能對你有幫助。 更多相關知識,請造訪php中文網
Python教學欄位。
以上是什麼是Python type 函數? type 函數使用範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!