当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Dictionary items()用法及代码示例


字典 items() 方法

items() 方法用于将所有项目作为视图对象获取,视图对象表示字典的键值对。

用法:

    dictionary_name.items()

参数:

  • 它不接受任何参数。

返回值:

这个方法的返回类型是<class 'dict_items'>,它将字典的项目作为视图对象返回。

例:

# Python Dictionary items() Method with Example

# dictionary declaration
student = {
  "roll_no":101,
  "name":"Shivang",
  "course":"B.Tech",
  "perc":98.5
}

# printing dictionary
print("data of student dictionary...")
print(student)

# printing items
print("items of student dictionary...")
print(student.items())

# printing return type of student.items() Method
print("return type is:", type(student.items()))

输出

data of student dictionary...
{'name':'Shivang', 'perc':98.5, 'roll_no':101, 'course':'B.Tech'}
items of student dictionary...
dict_items([('name', 'Shivang'), ('perc', 98.5), ('roll_no', 101), ('course', 'B.Tech')])
return type is: <class 'dict_items'>


相关用法


注:本文由纯净天空筛选整理自 Python Dictionary items() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。