python循环语句for 同时执行

如题所述

第1个回答  2021-05-11
# 2021-05-11 Luke
a = [1, 2, 3, 4, 3, 2]
b = [2, 3, 6, 8, 7, 0]
for c in a:
if c in b:
print(c)
相似回答