Python 字典(Dictionary) items()方法 - 菜鸟教程
文章推薦指數: 80 %
items() 方法的遍历:items() 方法把字典中每对key 和value 组成一个元组,并把这些元组放在列表中返回。
d = {'one': 1, 'two': 2, 'three': 3} >>> d.items() dict_items ...
菜鸟教程--学的不仅是技术,更是梦想!
首页
HTML
CSS
JavaScript
Vue
Bootstrap
NodeJS
Python3
Python2
Java
C
C++
C#
Go
SQL
Linux
jQuery
本地书签
首页
HTML
CSS
JS
本地书签
Search
Python3教程
Python2教程
Vue3教程
vue2教程
Bootstrap3教程
Bootstrap4教程
Bootstrap5教程
Bootstrap2教程
Python基础教程
Python基础教程
Python简介
Python环境搭建
Python中文编码
Python基础语法
Python变量类型
Python运算符
Python条件语句
Python循环语句
PythonWhile循环语句
Pythonfor循环语句
Python循环嵌套
Pythonbreak语句
Pythoncontinue语句
Pythonpass语句
PythonNumber(数字)
Python字符串
Python列表(List)
Python元组
Python字典(Dictionary)
Python日期和时间
Python函数
Python模块
Python文件I/O
PythonFile方法
Python异常处理
PythonOS文件/目录方法
Python内置函数
Python高级教程
Python面向对象
Python正则表达式
PythonCGI编程
PythonMySQL
Python网络编程
PythonSMTP
Python多线程
PythonXML解析
PythonGUI编程(Tkinter)
Python2.x与3.x版本区别
PythonIDE
PythonJSON
Python100例
Python测验
Python字典(Dictionary)has_key()方法
Python字典(Dictionary)keys()方法
Python字典(Dictionary)items()方法
Python字典
描述
Python字典(Dictionary)items()函数以列表返回可遍历的(键,值)元组数组。
语法
items()方法语法:
dict.items()
参数
NA。
返回值
返回可遍历的(键,值)元组数组。
实例
以下实例展示了items()函数的使用方法:
实例(Python2.0+)
#!/usr/bin/python
#coding=utf-8
tinydict={'Google':'www.google.com','Runoob':'www.runoob.com','taobao':'www.taobao.com'}
print"字典值:%s"%tinydict.items()
#遍历字典列表
forkey,valuesintinydict.items():
printkey,values
以上实例输出结果为:
字典值:[('Google','www.google.com'),('taobao','www.taobao.com'),('Runoob','www.runoob.com')]
Googlewww.google.com
taobaowww.taobao.com
Runoobwww.runoob.com
Python字典
Python字典(Dictionary)has_key()方法
Python字典(Dictionary)keys()方法
1篇笔记
写笔记
#0 cloudray clo***[email protected] 参考地址315items()方法的遍历:items()方法把字典中每对key和value组成一个元组,并把这些元组放在列表中返回。
d={'one':1,'two':2,'three':3}
>>>d.items()
dict_items([('one',1),('two',2),('three',3)])
>>>type(d.items())
延伸文章資訊
- 1iTerm2 - macOS Terminal Replacement
iTerm2 is licensed under GPL v2. iTerm2 by George Nachman. Website by Matthew Freeman, George Nac...
- 2Item 2-翻译为中文-例句英语
使用Reverso Context: Price String Must Item 2 Price 10.2,在英语-中文情境中翻译"Item 2"
- 3Test Item 2 (Test Item 2) - MC百科|最大的Minecraft中文MOD百科
Test Item 2 (Test Item 2)资料的介绍页面,此资料来自模组[GT++]Gregtech++,我的世界MOD百科,提供Minecraft(我的世界)MOD(模组)物品资料介绍...
- 4Transport items | MMKB - Fandom
Item-2
- 5Flex · Bootstrap v5.0
<div class="d-flex flex-row bd-highlight mb-3"> <div class="p-2 bd-highlight">Flex item 1</div> <...