+ 1
How to make endless loop in python
5 Answers
+ 6
Simplest codeđđ»
while 1==1:
print("Your text here")
đ Jst try đđ»
+ 2
It's :
while True:
Or
while 1:
+ 1
while(0<1)
print(âhelloâ)
+ 1
thanks suhail
0
I suppose similarly to java: while (true)...