python同时遍历两个list
2021-02-14 05:17
阅读:486
标签:list zip for class int app cat python 列表 python同时遍历两个list list1 = [‘a‘, ‘b‘, ‘c‘, ‘d‘] python同时遍历两个list 标签:list zip for class int app cat python 列表 原文地址:https://www.cnblogs.com/Sakurar/p/12723903.html
list2 = [‘apple‘, ‘boy‘, ‘cat‘, ‘dog‘]
for x, y in zip(list1, list2):
print(x, y)
注:两个列表等长
评论
亲,登录后才可以留言!