Python
how to make an infinite print in python?
easy:
write in your python console this line of code:
while(true):
and into the loop insert the instruction:
print("ti amo Lucre")
the resul is:
while(true):
print("ti amo Lucre")
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)