while True:
print("Hello, World")
while True:
print("Hello, World")
#or
x=3
while x+3==6:
print("Hello, World")
# you just have to make you condition is something that alwas true,
#for example: 1+1 > 0 or 0 < 5
while True:
//Code which has to be repeted infinite times.
while 1/True:
#whatever command u wish to use
i = 0
while i < 10:
print(i)
for _ in iter(int, 1):
pass
go_on = True
while go_on :
print("whatever")