Web2.0, HPC, Unix, and my mine.
Posts tagged factorial
[Python] Evolution of a Python programmer.py
Feb 1st
เจอผ่านๆ ลูกตา รู้สึกประทับใจ เรยเก็บไว้หน่อย นะๆๆ
1 2 3 4 5 6 7 | #Newbie programmer def factorial(x): if x == 0: return 1 else: return x * factorial(x - 1) print factorial(6) |
