Find and list duplicates of files (26)

8 Name: #!/usr/bin/anonymous : 2008-04-26 18:00 ID:NC3CTkuc

Hello here is my factorial program I wrote in Python

def fact (n):
if n == 0: return 1
return n*fact(n - 1);

number = int(raw_input("Enter a number:"))
if number < 0:
print "No"
else:
print fact(number)

This thread has been closed. You cannot post in this thread any longer.