python for循环的嵌套怎么回事?

2025-03-21 18:08:31
推荐回答(1个)
回答1:

for i in [1, 2, 3]:
for j in [2, 3, 4]:

print i+j