Answers for "while 0 python"

5

while loop in python

j = 0
while j < 3:
  print("hello") # Or whatever you want
  j += 1
#This runs the loop until reaches 3 and above
Posted by: Guest on November-26-2020
4

infinite while python

#infinite While on Python

while True:
  print('Hello World!')
Posted by: Guest on May-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language