Number plus string, separated

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

for x,y in zip(l1,l2):
print(x,y,'--',x*y)

Guess you like

Origin www.cnblogs.com/cheyunhua/p/11008487.html