I’ve seen two ways to create an infinite loop in Python:
-
while 1: do_something() -
while True: do_something()
Is there any difference between these? Is one more pythonic than the other?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Fundamentally it doesn’t matter, such minutiae doesn’t really affect whether something is ‘pythonic’ or not.
If you’re interested in trivia however, there are some differences.
The builtin boolean type didn’t exist till Python 2.3 so code that was intended to run on ancient versions tends to use the
while 1:form. You’ll see it in the standard library, for instance.The True and False builtins are not reserved words prior to Python 3 so could be assigned to, changing their value. This helps with the case above because code could do
True = 1for backwards compatibility, but means that the nameTrueneeds to be looked up in the globals dictionary every time it is used.Because of the above restriction, the bytecode the two versions compile to is different in Python 2 as there’s an optimisation for constant integers that it can’t use for
True. Because Python can tell when compiling the1that it’s always non-zero, it removes the conditional jump and doesn’t load the constant at all:So,
while True:is a little easier to read, andwhile 1:is a bit kinder to old versions of Python. As you’re unlikely to need to run on Python 2.2 these days or need to worry about the bytecode count of your loops, the former is marginally preferable.