Guest User

Untitled

a guest
Feb 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. # coding: utf-8
  2. def factorial(x):
  3. y = 1
  4. while x > 1:
  5. y = y * x
  6. x -= 1
  7. print(y)
  8.  
  9. factorial(4)
Add Comment
Please, Sign In to add comment