how to do > in python code example
Example: python >>
# >> and << are bitwise operators. They shift the bits of an integer right and left
# 7 = 0111
print(7 >> 1)
# 3 (0011)
print(7 << 1)
# 14 (1110)
# >> and << are bitwise operators. They shift the bits of an integer right and left
# 7 = 0111
print(7 >> 1)
# 3 (0011)
print(7 << 1)
# 14 (1110)