正文python 判断一个数字是否为3的幂IP云V管理员/2022-06-22/5 阅读 06/22提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 def is_Power_of_three(n): while (n % == ): n /= ; return n == ; print(is_Power_of_three())print(is_Power_of_three())print(is_Power_of_three())