Question: (Python) Please do NOT solve it by using special functions(like max min, divmod), I have to ask the same questions again and again otherwise, thanks

(Python)
Please do NOT solve it by using special functions(like max min, divmod), I have to ask the same questions again and again otherwise, thanks for your understanding.
1. Write a program that prompts the user for an integer, calculates the factorial of the input integer and displays the result as a string with a comma at every third position, starting from the right. Assume that user input is valid. Hint: Think about representing a number as a string. Sample Run 1: Sample Run 3: Enter an int: 0 0! = 1 Enter an int: 10 10! = 3,628,800 Sample Run 2: Sample Run 4: Enter an int: 4 4! = 24 Enter an int: 20 20! = 2,432,902,008,176,640,000
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
