HOME/Articles/

simple python-example-83 (snippet)

Article Outline

Python example 'python-example-83'

python-example-83

Python example: python-example-83

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

if __name__ == '__main__':
    sum = 4
    s = 4
    for j in range(2,9):
        print(sum)
        if j <= 2:
            s *= 7
        else:
            s *= 8
        sum += s
    print('sum = %d' % sum)