What Is “while True” in Python?
Python provides the while loop in order to iterate over multiple items which can be a list or similar enumerable objects. But the while loop can be also used in different ways where one of them is while True: . In this tutorial, we explain what is the meaning of the “while True:” line and … Read more