This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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