DEV Community

matte_dev
matte_dev

Posted on

infinite print

Python

how to make an infinite print in python?
easy:
write in your python console this line of code:

while(true):
Enter fullscreen mode Exit fullscreen mode

and into the loop insert the instruction:

print("ti amo Lucre")
Enter fullscreen mode Exit fullscreen mode

the resul is:

while(true):
    print("ti amo Lucre")
Enter fullscreen mode Exit fullscreen mode

Top comments (0)