HOME/Articles/

simple python-example-81 (snippet)

Article Outline

Python example 'python-example-81'

python-example-81

Python example: python-example-81

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

a = 809
for i in range(10,100):
    b = i * a + 1
    if b >= 1000 and b <= 10000 and 8 * i < 100 and 9 * i >= 100:
        print(b,'/',i,' = 809 * ',i,' + ', b % i)