While loops continuously test the condition until the condition becomes False, hence we can call while loop an infinite loop. code example
Example: infinite while python
#infinite While on Python
while True:
print('Hello World!')
#infinite While on Python
while True:
print('Hello World!')