Answers for "Print First 10 natural numbers using while loop"

0

Print First 10 natural numbers using while loop

i=0
while i<=10:
  print(i)
  i+=1
Posted by: Guest on June-03-2021

Code answers related to "Print First 10 natural numbers using while loop"

Python Answers by Framework

Browse Popular Code Answers by Language