Python 练习

1. 题目

取一个整数 a 从右端开始的 4〜7 位。

2. 分析

(1) 先使 a 右移 4 位。

(2) 设置一个低 4 位全为 1, 其余全为 0 的数。可用 ~(~0<<4)

(3) 将上面二者进行 & 运算。

3. 实例

点我看答案
a = int(input('input a number:'))
b = a >> 4
c = ~(~0 << 4)
d = b & c
print(f'{a:o}\t{b:o}')

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""