“Tak terbatas untuk loop python” Kode Jawaban

tak terbatas saat loop di python

while True:
	//Code which has to be repeted infinite times.
Ved

cara membuat loop python tak terbatas

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
RSteepbroR

tak terbatas saat python

#infinite While on Python

while True:
  print('Hello World!')
Panicky Pelican

Tak terbatas untuk loop python

for _ in iter(int, 1):
    pass
Stanley Saavedra

cara membuat loop tak terbatas dalam python

while 1/True:
  #whatever command u wish to use
Coder#137

Jawaban yang mirip dengan “Tak terbatas untuk loop python”

Pertanyaan yang mirip dengan “Tak terbatas untuk loop python”

Lebih banyak jawaban terkait untuk “Tak terbatas untuk loop python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya