Just wanted to confirm whether the following is an infinite loop or not. I think it's not because of how memory works, I faintly remember something about how the ints loop back to the opposite limit once a certain lower or upper limit is reached, based on how ints are stored in a computer's memory. But I'm not certain.
i = 0
while i < 1:
#do stuff
i -= 1
EDIT: my god a stupid mistake in the syntax, my bad, I've edited the code now. Thanks for the patience. :)