page contents

Python中items函数是什么

字典的items方法作用:是可以将字典中的所有项,以列表方式返回。因为字典是无序的,所以用items方法返回字典的所有项,也是没有顺序的.........

attachments-2021-09-sMZRI128613047d950219.png

字典的items方法作用:是可以将字典中的所有项,以列表方式返回。因为字典是无序的,所以用items方法返回字典的所有项,也是没有顺序的。

 

函数的作用

以列表返回可遍历的(, ) 元组数组。

 

描述

Python 字典(Dictionary) items() 函数以列表返回可遍历的(, ) 元组数组。

 

参数

NA

 

返回值

返回可遍历的(, ) 元组数组。

 

语法

items()方法语法:dict.items()

 

实例:

attachments-2021-09-moNmfw4A613048145cf0e.png

以上实例输出结果为

attachments-2021-09-7EybgTO56130481cc0f4f.png 

items()函数的使用方法:

# !/usr/bin/python

# coding=utf-8

dict = {'Google': 'www.google.com', 'Runoob': 'www.runoob.com', 'taobao': 'www.taobao.com'}

print "字典值 : %s" % dict.items()

# 遍历字典列表

for key, values in dict.items():

print key, values

以上实例输出结果为:字典值 : [('Google', 'www.google.com'), ('taobao', 'www.taobao.com'), ('Runoob', 'www.runoob.com')]

Google www.google.com

taobao www.taobao.com

Runoob www.runoob.com

 

 

 

 

以上就是有关Python中字典内置items函数的相关内容了,想要了解更多有关python的其它知识也可关注六星社区网站。

  • 发表于 2021-09-02 11:42
  • 阅读 ( 1592 )
  • 分类:Python开发

0 条评论

请先 登录 后评论
小柒
小柒

1474 篇文章

作家榜 »

  1. 轩辕小不懂 2403 文章
  2. 小柒 1474 文章
  3. Pack 1135 文章
  4. Nen 576 文章
  5. 王昭君 209 文章
  6. 文双 71 文章
  7. 小威 64 文章
  8. Cara 36 文章