Python dictionary (Dictionary) items () method

Source: Internet
Author: User

Welcome to follow Me blog: Cloud Dreamer Description

The Python Dictionary items () method returns a traversal (key, value) array of tuples in a list form (not a direct list, to return a list value and also call the list function).

Grammar

Dict.items()

Parameters
    • NA
return value

Returns an array of traversed (key, value) tuples as a list.

Example

Example code:

= {‘Google‘‘www.google.com‘‘Runoob‘‘www.runoob.com‘‘taobao‘‘www.taobao.com‘}print("字典值 : %s"% D.items())print("转换为列表 : %s"%list(D.items()))# 遍历字典列表forin D.items():# 遍历字典列表    print(key, value)

The above code output:

字典值 : [(‘Google‘‘www.google.com‘), (‘taobao‘‘www.taobao.com‘), (‘Runoob‘‘www.runoob.com‘)]Google www.google.comtaobao www.taobao.comRunoob www.runoob.com

Python dictionary (Dictionary) items () method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.