Find factorial of a number Dry Run in PYTHON

Find factorial of a number is an interactive PYTHON dry run visualizer from the While programs section. Study the source code, then use the execution controls to follow each step, variable update, highlighted line, and console output.

This page provides a browser-based dry run with source-code highlighting, auto-scroll, voice narration controls, and execution output for learning the program step by step.

Find factorial of a number Program Code

# Factorial of a number
num = int(input("Enter a number: "))
factorial = 1
i = 1

while i <= num:
    factorial *= i
    i += 1

print(f"Factorial of {num} = {factorial}")

View the complete While programs page.

Program Console Find factorial of a number Topic: PYTHON Vignaankosh.com
Execution Panel
Step 0/0
Console is empty.