+ 1
How to make endless loop in python
5 Antworten
+ 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)...