Print Integers - 3
Write a Python program of Print Integers - 3. It consists of two test cases
The below link contains Print Integers - 3 - Question, explanation and test cases
https://drive.google.com/file/d/1Dzc7mWib2PaqHxt4aDmjmQr00pR0aZPg/view?usp=sharing
We need all test caese can be come while code was running
n = int(input())
for i in range(n, 0, -1):
print(i)
Comments
Leave a comment