how do you make an infinite printing loop in python -
this question has answer here:
- how run python program forever? 4 answers
im new python , dont know loops how make infinite printing loop
you can use this:
while true: print("whatever want print") this not suggested though, because leave program running forever , not good.
Comments
Post a Comment