Skip to content

Instantly share code, notes, and snippets.

@Visgean
Created April 26, 2010 14:20
Show Gist options
  • Select an option

  • Save Visgean/379394 to your computer and use it in GitHub Desktop.

Select an option

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