So these are the instructions:
"Given a number “n,” if I were to multiply all positive integers up to and including “n,” I would get a product. This product is called the factorial of “n,” which is denoted n! (read as n factorial). It is also given that 0! = 1. Your task is to write a Python script that implements the factorial of a number “n.” For example if “n” is initialized with the value 5, then your script should print out the following.
The factorial of 5 is 120"
I'm stuck on how exactly to structure the while and for loop along with the range variable. Can any one help me here. It doesn't have to be the exact answer. Just a clue or something please :D