Skip to content

Instantly share code, notes, and snippets.

@khuyentran1401
Created April 28, 2021 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khuyentran1401/98e5bf8730a02b6b5bb759560e45a6ef to your computer and use it in GitHub Desktop.
Save khuyentran1401/98e5bf8730a02b6b5bb759560e45a6ef to your computer and use it in GitHub Desktop.
import heartrate
from time import sleep
heartrate.trace(browser=True)
def factorial(x):
if x == 1:
return 1
else:
sleep(0.5)
return (x * factorial(x-1))
if __name__ == "__main__":
num = 20
print(f"The factorial of {num} is {factorial(num)}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment