HOME/Articles/

simple python-example-53 (snippet)

Article Outline

Python example 'python-example-53'

python-example-53

Python example: python-example-53

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

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