Python 字典(Dictionary) type()方法

秋山信月归

描述

Python 字典(Dictionary) type() 函数返回输入的变量类型,如果变量是字典就返回字典类型。

语法

type()方法语法:

type(dict)

参数

  • dict -- 字典。

返回值

返回输入的变量类型。

实例

以下实例展示了 type()函数的使用方法:

#!/usr/bin/python

tinydict = {'Name': 'Zara', 'Age': 7};
print "Variable Type : %s" %  type (tinydict)

以上实例输出结果为:

Variable Type : <type 'dict'>
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码