第3章 第349节 Python 练习实例55

推荐给朋友

Python 练习实例55

题目:学习使用按位取反~。

程序分析:~0=1; ~1=0;
(1)先使a右移4位。
(2)设置一个低4位全为1,其余全为0的数。可用~(~0<<4)
(3)将上面二者进行&运算。

实例

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

if __name__ == '__main__':
    a = 234
    b = ~a
    print 'The a\'s 1 complement is %d' % b
    a = ~a
    print 'The a\'s 2 complement is %d' % a

以上实例输出结果为:

The a's 1 complement is -235
The a's 2 complement is -235