Guest User

Untitled

a guest
Feb 17th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import math
  2. # help from repl
  3. help(math)
  4. help(math.factorial)
  5. math.factorial(5)
  6. math.factorial(6)
  7.  
  8. # to reduce verboseness
  9. from math import factorial
  10. # Renaming the imported function
  11. from math import factorial as fac
Add Comment
Please, Sign In to add comment