数字加字符串用,隔开

l1 = [1,2,3]
l2 = [2,3,4]

for x,y in zip(l1,l2):
print(x,y,'--',x*y)
原文地址:https://www.cnblogs.com/cheyunhua/p/11008487.html