Advertisement
Uno2K

Aula5 - Fatorial

Sep 16th, 2021
821
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. import math
  2.  
  3. def fatorial(n):
  4.     return math.factorial(n)
  5.    
  6. print(fatorial(6))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement