python技术总结------循环技巧

#当遍历字典时,可以使用该items()方法同时检索键和相应的值。
knights={'gallahad':'the pure','robin':'brave'}
for k ,v in knights.items():
    print(k,v)

print()

#在序列中循环时,可以使用该enumerate()功能同时检索位置索引和相应的值。
for i,v in enumerate(['tic','tac','toe']):
    print(i,v)

print()

#要同时循环两个或多个序列,可以将条目与zip()函数配对。
questions=['name','quest','favorite color']
answers=['lancelot','the holy grail','blue']
for q,a in zip(questions,answers):
    print('what is your {}?It is{}'.format(q,a))

print()

#要反向循环一个序列,请先沿向前方向指定该序列,然后调用该reversed()函数。
for i in reversed(range(1,10,2)):#循环变量中的2是步长
    print(i)

print()

#要按排序顺序遍历序列,请使用该sorted()函数,该函数返回一个新的排序列表,同时保持源不变。
basket=['apple','orange','apple','pear','orange','banana']
for i in sorted(basket):
    print(i)

print()


#set()在序列上使用可消除重复的元素。使用 sorted()结合set()一个序列是一个习惯地遍历按排序顺序序列的独特的元件。
basket=['apple','orange','apple','pear','orange','banana']
for f in sorted(set(basket)):
    print(f)

 

posted @ 2021-03-02 12:45  有图有派  阅读(97)  评论(0编辑  收藏  举报