© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
MosMK
infinite loop.
you should add a condition to break
a = 1 while a: a += 23 print a # assuming you do not want it to run forever if a > 100: break