HOME/Articles/

simple python-example-51 (snippet)

Article Outline

Python example 'python-example-51'

python-example-51

Python example: python-example-51

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

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