登录 注册
当前位置:主页 > 资源下载 > 50 > 遍历技巧-python3.2.3官方文档(中文版)高清完整pdf下载

遍历技巧-python3.2.3官方文档(中文版)高清完整pdf下载

  • 更新:2024-04-02 11:23:33
  • 大小:1.32MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Python - 后端
  • 格式:PDF

资源介绍

3.6 遍历技巧 当通过字典遍历数据时,用 items()方法就可以同时把关键字和相对应的值从字典中取出。 >>> knights = {’gallahad’: ’the pure’, ’robin’: ’the brave’} >>> for k, v in knights.items(): ... print(k, v) ... gallahad the pure robin the brave 当用序列遍历数据时,用 enumerate()可以同时把位置索引和对应的值得到。 >>> for i, v in enumerate([’tic’, ’tac’, ’toe’]): ... print(i, v) ... 0 tic 1 tac 2 toe 想要同时遍历两个或多个序列时,可以用方法 zip()把属性整合起来。 >>> questions = [’name’, ’quest’, ’favorite color’] >>> answers = [’lancelot’, ’the holy grail’, ’blue’] >>> for q, a in zip(questions, answers): ... print(’What is your {0}? It is {1}.’.format(q, a)) ... What is your name? It is lancelot. What is your quest? It is the holy grail. What is your favorite color? It is blue. 想要倒叙遍历序列,首先正序指定遍历序列,然后调用方法 reversed().