Hello,
I have this 'for loop' in my script, where box_altex == 8 :
...
for num_box in range ( (box_altex//33) , (box_altex//33)+3) :
print (num_box)
...
actual range : (6,9)
three print lines expected : 6,7,8
Only first occurs, then the code jumps to the first line after the for loop
How is it possible ?
Regards