You are viewing a single comment's thread. Return to all comments →
def extraLongFactorials(n): mult=1 # Write your code here while n!=1: mult*=n n=n-1 print(mult)
Seems like cookies are disabled on this browser, please enable them to open this website
Extra Long Factorials
You are viewing a single comment's thread. Return to all comments →