有人可以解释按位、二进制与运算符( & )的用途以及如何使用它吗?我正在研究制作isprime
函数的不同方法并遇到了这个问题。
def isprime(n):
# make sure n is a positive integer
n = abs(int(n))
# 0 and 1 are not primes
if n < 2:
return False
# 2 is the only even prime number
if n == 2:
return True
# all other even numbers are not primes
if not n & 1:
return False
# range starts with 3 and only needs to go up the squareroot of n
# for all odd numbers (counts by 2's)
for x in range(3, int(n**0.5)+1, 2):
if n % x == 0:
return False
return True
我还查看了Python 位运算符示例,但无法掌握。