本文整理汇总了Python中BitVector.shift_right方法的典型用法代码示例。如果您正苦于以下问题:Python BitVector.shift_right方法的具体用法?Python BitVector.shift_right怎么用?Python BitVector.shift_right使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BitVector
的用法示例。
在下文中一共展示了BitVector.shift_right方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: sigma1
# 需要导入模块: import BitVector [as 别名]
# 或者: from BitVector import shift_right [as 别名]
def sigma1(w):
temp1=w>>19
temp2=w>>61
temp3=BitVector(intVal=w)
temp3.shift_right(6)
temp3=int(temp3)
sig1=temp1^temp2^temp3
return sig1
示例2: sigma0
# 需要导入模块: import BitVector [as 别名]
# 或者: from BitVector import shift_right [as 别名]
def sigma0(w):
temp1=w>>1
temp2=w>>8
temp3=BitVector(intVal=w)
temp3.shift_right(7)
temp3=int(temp3)
sig0=temp1^temp2^temp3
return sig0
示例3: print
# 需要导入模块: import BitVector [as 别名]
# 或者: from BitVector import shift_right [as 别名]
print(bv)
bv >> 1
print(bv)
bv >> 1 >> 1
print(bv)
bv = BitVector(bitlist=(1, 1, 1, 0, 0, 1))
print(bv)
bv << 1
print(bv)
bv << 1 << 1
print(bv)
print("\nExperiments with chained invocations of NON-circular shifts:")
bv = BitVector(bitlist=(1, 1, 1, 0, 0, 1))
print(bv)
bv.shift_right(1)
print(bv)
bv.shift_right(1).shift_right(1)
print(bv)
bv = BitVector(bitlist=(1, 1, 1, 0, 0, 1))
print(bv)
bv.shift_left(1)
print(bv)
bv.shift_left(1).shift_left(1)
print(bv)
# UNCOMMENT THE FOLLOWING LINES TO TEST THE
# PRIMALITY TESTING METHOD. IT SHOULD SHOW
# THAT ALL OF THE FOLLOWING NUMBERS ARE PRIME:
print("\nExperiments with primality testing. If a number is not prime, its primality " +
"test output must be zero. Otherwise, it should a number very close to 1.0.")