def is_Power_of_four(n):
while n and not (n & 0b11):
n >>=
return (n == ) print(is_Power_of_four())
print(is_Power_of_four())
print(is_Power_of_four())
print(is_Power_of_four())
def is_Power_of_four(n):
while n and not (n & 0b11):
n >>=
return (n == ) print(is_Power_of_four())
print(is_Power_of_four())
print(is_Power_of_four())
print(is_Power_of_four())