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.
π₯³ Free Follow Opertunity:
There is a really hard challenge for a free follow! The first person to figure out a way to create a function that calls a function that calls the original function to create an endless loop, gets a shoutout, a lot of posts liked, and a follow!
Up for the challenge?
Top comments (2)
You mean something that won't break the stack, like this?
Why not just a single function, then, as you don't actually need both?
Hmm... I guess it is harder in Python.
I was thinking something on the python lines like this: