# Factorial problem # Function to return the factorial of a number def Fact(Number): Total = Number for Counter in range (Number -1, 0, -1): Total = Total * Counter return Total # Main program print(Fact(4))