码迷,mamicode.com
首页 > 编程语言 > 详细

python同时遍历两个list

时间:2020-04-18 09:55:36      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:list   zip   for   class   int   app   cat   python   列表   

python同时遍历两个list

list1 = [‘a‘, ‘b‘, ‘c‘, ‘d‘]
list2 = [‘apple‘, ‘boy‘, ‘cat‘, ‘dog‘]
for x, y in zip(list1, list2):
  print(x, y)
注:两个列表等长

 

 
 

python同时遍历两个list

标签:list   zip   for   class   int   app   cat   python   列表   

原文地址:https://www.cnblogs.com/Sakurar/p/12723903.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!