#infinite While on Python while True: print('Hello World!')
while True: //Code which has to be repeted infinite times.
i = 0 while i < 10: print(i)
go_on = True while go_on : print("whatever")