Python 字典 ( Dictionary ) type() 方法
Python 内置的 type() 可以用于 字典(Dictionary) 对象
返回的是字典对象的类型 <type 'dict'>
语法
type(dict_obj)
参数
参数 | 说明 |
---|---|
dict_obj | 字典 |
返回值
返回字典对象的类型 <type 'dict'>
范例
下面的代码使用 type() 方法输出字典对象的类型
>>> people = {'city': 'PEK', 'age': 28, 'name': 'Li Bai'} >>> type(people) <type 'dict'> >>> type(dict()) <type 'dict'> >>> type({}) <type 'dict'>