Answers for "for iteration python"

0

how to use iteration in python

n = 5
while n > 0:
    print n
    n = n-1
print 'Blastoff!'
Posted by: Guest on February-29-2020
-2

python loop

n = 10
for i in range(n):
  print(i)
Posted by: Guest on August-19-2021

Python Answers by Framework

Browse Popular Code Answers by Language