-
Notifications
You must be signed in to change notification settings - Fork 0
Test
Orpheus Lummis edited this page May 27, 2023
·
2 revisions
Markdown Test Document
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
result = factorial(5)
print("Factorial of 5 is:", result)The quadratic formula is given by:
where