Skip to content

Instantly share code, notes, and snippets.

@Visgean
Created April 26, 2010 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Visgean/379394 to your computer and use it in GitHub Desktop.
Save Visgean/379394 to your computer and use it in GitHub Desktop.
#! /usr/bin/python
# -*- coding: UTF-8 -*-
def fact(ar):
x = 1
while ar > 0:
x *= ar
ar -= 1
return x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment