There are two cycles:
for i in range(300,305): pass for i2 in range(1,5): pass
As a result, you need to get:
test 300
test 300 test 1
test301
test 301 test 2
And something a little confused in the two birches ...
There are two cycles:
for i in range(300,305): pass for i2 in range(1,5): pass
As a result, you need to get:
test 300
test 300 test 1
test301
test 301 test 2
And something a little confused in the two birches ...
Source: https://ru.stackoverflow.com/questions/169142/
All Articles