Answers for "Loops with variables that count"

0

Loops with variables that count

n = 1
while n <= 5:
    print(n * 2)
    n = n + 1
Posted by: Guest on October-21-2021

Browse Popular Code Answers by Language