中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python 高級特性:Iteration(迭代)

發布時間:2020-07-15 12:17:20 來源:網絡 閱讀:479 作者:虎皮喵的喵 欄目:編程語言

概念:可用于循環就是迭代



#!/usr/bin/python

dic = {'a':1, 'b':2, 'c':3, 'd':4};
for key in dic:
    print "key:", key;

python 高級特性:Iteration(迭代)

for value in dic.itervalues():
    print "value:", value;

python 高級特性:Iteration(迭代)

for key in dic.iterkeys():
    print "key:", key;

python 高級特性:Iteration(迭代)

for key in dic.keys():
    print "keys:", key;

python 高級特性:Iteration(迭代)

for key,value in dic.iteritems():
    print "iteritems:", key, value;

python 高級特性:Iteration(迭代)


#check 檢查dic是否為可迭代類型
from collections import Iterable  #申明Iterable
print isinstance(dic, Iterable);

python 高級特性:Iteration(迭代)


#enumerate
for x, y in enumerate(['a', 'b', 'c']):
    print x, y

python 高級特性:Iteration(迭代)

for x,y in [(1, 2), (3, 4), (5, 6)]:
    print x,y

python 高級特性:Iteration(迭代)

for x in [(1, 2), (3, 4), (5, 6)]:
    print x

python 高級特性:Iteration(迭代)

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

津南区| 庄浪县| 高平市| 江川县| 泾阳县| 高淳县| 亳州市| 镇赉县| 黎平县| 从化市| 息烽县| 惠州市| 亳州市| 柯坪县| 桂林市| 襄樊市| 上栗县| 漳州市| 吴桥县| 彭山县| 宝鸡市| 鲜城| 南召县| 三亚市| 封开县| 龙川县| 广南县| 武宁县| 澜沧| 麻江县| 乐东| 天台县| 洮南市| 卢龙县| 静安区| 巫溪县| 吉木乃县| 肥城市| 那坡县| 枝江市| 天全县|