If this question is completely garbage I apologize because I am new to CS and haven't understood at how programming languages (Python specifically) work.
I was reading about how in a standard two-byte representation of a number, if one was to increment 65,536 times, the integer would wrap back to one. Would this case occur in Python, and if so at what number would this occur?
Edit: I read a little bit further into this and it seems that after an increment, programming languages seem to redefine the value. Would this prevent this from occur
for i in range(65537): print("wrong") if i >= i + 1 else None;
– John L. Dec 16 '18 at 22:37