This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2022_Stanislav_Mykhailenko/Lesson_2/task3.py

23 lines
575 B
Python
Raw Normal View History

2022-10-27 16:05:50 +00:00
# Lesson 2 Task 3: display all numbers from n to 1, then remove the first number and repeat while n > 0
# Author: Stanislav Mykhailenko
# License: Unlicense
error = False
2022-10-27 16:05:50 +00:00
try: number = int(input("Enter a natural number: "))
except ValueError: error = True
2022-10-27 16:05:50 +00:00
if not error and number < 1: error = True
2022-10-27 16:05:50 +00:00
if not error:
while number > 0:
currentNumber = number
while currentNumber > 0:
print(currentNumber, end='')
if currentNumber > 1: print(' ', end='')
currentNumber = currentNumber - 1
print('')
number = number - 1
else:
print("Invalid number entered.")