diff --git a/factorial.py b/factorial.py index 60d09f1..ea5d4f1 100644 --- a/factorial.py +++ b/factorial.py @@ -1,10 +1,11 @@ + # Python program to find the factorial of a number provided by the user. # change the value for a different result -num = 7 +num = 6 # To take input from the user -#num = int(input("Enter a number: ")) +num = int(input("Enter a number: ")) factorial = 1