Update Lesson 2 Task 4 to raise an error properly

This commit is contained in:
Stanislav Mykhailenko 2023-01-24 02:37:00 +02:00
parent 838f6cd131
commit 9fd54d6fbc
GPG key ID: 1E95E66A9C9D6A36

View file

@ -2,19 +2,16 @@
# Author: Stanislav Mykhailenko
# License: Unlicense
error = False
try:
number = int(input("Enter a natural number: "))
if number < 1:
raise ValueError("A natural number is required.")
try: number = int(input("Enter a natural number: "))
except ValueError: error = True
if not error and number < 1: error = True
if not error:
factorial = 1
for i in range(2, number + 1):
factorial = factorial * i
else:
print(str(number) + " factorial is " + str(factorial))
else:
except ValueError:
print("Invalid number entered.")