Latest web development tutorials

Python includes exercises 25

Python 100 Li Python 100 Li

Title: Demand 1 + 2 + 3 + ... + 20 and!!!.

Program Analysis: This program just multiply accumulate become tired.

Source Code:

method one:

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

n = 0
s = 0
t = 1
for n in range(1,21):
    t *= n
    s += t
print '1! + 2! + 3! + ... + 20! = %d' % s

Method two:

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

s = 0
l = range(1,21)
def op(x):
    r = 1
    for i in range(1,x + 1):
        r *= i
    return r
s = sum(map(op,l))
print '1! + 2! + 3! + ... + 20! = %d' % s

The above example output is:

1! + 2! + 3! + ... + 20! = 2561327494111820313

Python 100 Li Python 100 Li