码迷,mamicode.com
首页 > 其他好文 > 详细

判断一个数是否是4的n次方

时间:2018-12-25 11:38:47      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:次方   nbsp   class   print   style   一个   ==   return   col   

 

def is_Power_of_four(n):  
    while n and not (n & 0b11):  
        n >>= 2  
    return (n == 1)  
  
print(is_Power_of_four(4))
print(is_Power_of_four(12))  
print(is_Power_of_four(16))  
print(is_Power_of_four(255))

 

判断一个数是否是4的n次方

标签:次方   nbsp   class   print   style   一个   ==   return   col   

原文地址:https://www.cnblogs.com/sea-stream/p/10172470.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!