Skip to content. | Skip to navigation
Click here to get the file
def multiplica3(um, dois, tres): return um*dois*tres def fatorial(x): if x>=1: res = 1 for i in range(2,x+1, 1): res *= i return res
This site conforms to the following standards: