这个题如果面试拿出来就是要录你了 哈哈
class Solution: # @param {integer} n # @return {boolean} def isPowerOfTwo(self, n): return n == pow(2, len(bin(n)) - 3)