Python 字典 Dictionary type()方法
Python 字典 Dictionary type()方法
Python 字典(Dictionary) type() 函數返回輸入的變量類型,如果變量是字典就返回字典類型。
語法
type()方法語法:
type(dict)
參數
- dict -- 字典。
返回值
返回輸入的變量類型。
實例
以下實例展示了 type()函數的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7}; print "Variable Type : %s" % type (dict)
以上實例輸出結果為:
Variable Type : <type 'dict'=""></type>
相關文章
- Python 基礎語法
- Python while 循環語句
- Python 多線程
- Python 算法理由
- Python3 解釋器
- Python3 for while 循環語句
- Python3 函數
- Python exp() 函數
- 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()方法