Python 字典 Dictionary type()方法
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'=""></type>
相關(guān)文章
- Python 基礎(chǔ)語(yǔ)法
- Python while 循環(huán)語(yǔ)句
- Python 多線程
- Python 算法理由
- Python3 解釋器
- Python3 for while 循環(huán)語(yǔ)句
- Python3 函數(shù)
- Python exp() 函數(shù)
- Python File fileno() 方法
- Python os.chown() 方法
- Python os.fstatvfs() 方法
- Python os.getcwd() 方法
- Python os.walk() 方法
- Python isalnum()方法
- Python rjust()方法
- Python List remove()方法
- Python 字典 Dictionary len()方法
- Python 字典 Dictionary copy()方法
- Python 字典 Dictionary keys()方法
- Python time mktime()方法