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)
Useful links
- Learn Python: https://pythonbasics.org/
- More Python: https://pythonprogramminglanguage.com