HOME/Articles/

simple python-example-26 (snippet)

Article Outline

Python example 'python-example-26'

Functions in program:

  • def fact(j):

python-example-26

Python example: python-example-26

#!/usr/bin/python
# -*- coding: UTF-8 -*-

def fact(j):
    sum = 0
    if j == 0:
        sum = 1
    else:
        sum = j * fact(j - 1)
    return sum

for i in range(5):
    print('%d! = %d' % (i,fact(i)))