There are many ways to create loops. There is the boring while True: way: while True: print('hi') But that is boring, as mentioned above. I want to see if you can create a better to make something RUN FOREVER.

Feb 17, 2025 - 02:05
 0

There are many ways to create loops. There is the boring while True: way:

while True: 
    print('hi')

But that is boring, as mentioned above. I want to see if you can create a better to make something RUN FOREVER.