I have stumbled across a problem that requires the use of the "Unknown formula".
Referenced here: http://www.murderousmaths.co.uk/books/unknownform.htm
I have looked high and low and have not found an equivalent python symbol for "!" in the manner the author is using it.
# Example of authors use of '!'
5! == 5x4x3x2x1
I know that I could use a loop to create it, like in this post: Sum consecutive numbers in a list. Python
But I am hoping to make this a learning moment.
edit
There is a great thread about factorials (Function for Factorial in Python), however I much prefer The solution answer provided below. Very clear and concise.