how do you make an infinite printing loop in python -


this question has answer here:

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

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -