HOME/Articles/

simple python-example-75 (snippet)

Article Outline

Python example 'python-example-75'

python-example-75

Python example: python-example-75

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

if __name__ == '__main__':
    for i in range(5):
        n = 0
        if i != 1: n += 1
        if i == 3: n += 1
        if i == 4: n += 1
        if i != 4: n += 1
        if n == 3: print(64 + i)