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/task4.py
2022-11-03 19:33:19 +02:00

25 lines
480 B
Python

# Lesson 2 Task 4: get number factorial
# Author: Stanislav Mykhailenko
# License: Unlicense
# Return codes:
# 0 - OK
# 1 - Invalid number entered
import sys
def numberError():
print("Invalid number entered.")
sys.exit(1)
try: number = int(input("Enter a natural number: "))
except ValueError: numberError()
if number < 1: numberError()
factorial = 1
for i in range(2, number + 1):
factorial = factorial * i
else:
print(str(number) + " factorial is " + str(factorial))