Simple hello world program in python
Welcome to my Python tutorial! Let's test some basic math: ```python def calculate_factorial(n): if n == 0: return 1 return n * calculate_factorial(n - 1) number = 5 result = calculate_factorial(number) print(f"The factorial of {number} is {result}!")```
Read post