- Joined
- Apr 7, 2022
- Messages
- 14
- Reaction score
- 0
Hi guys,
I require code that starts within that starts within the middle of the for loop ranges, and then continues to the end of the for loop range.
Any ideas?
I require code that starts within that starts within the middle of the for loop ranges, and then continues to the end of the for loop range.
Code:
#here is my attempt of the code:
Yi01 = 2
Xi01 = 3
for Yi01 in range(1,4):
for Xi01 in range(1,5):
print(str(Yi01) + " " + str(Xi01))
#The above code does not print what I need
Below is what I require to be printed
#2 3
#2 4
#2 5
#3 1
#3 2
#3 3
#3 4
#3 5
#4 1
#4 2
#4 3
#4 4
#4 5
Any ideas?