HOME/Articles/

simple python-example-52 (snippet)

Article Outline

Python example 'python-example-52'

python-example-52

Python example: python-example-52

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

if __name__ == '__main__':
    a = 077
    b = a | 3
    print('a | b is %d' % b)
    b |= 7
    print('a | b is %d' % b)