Why does my recursive function with if-elif statements return None?

后端 未结 7 980
小蘑菇
小蘑菇 2020-12-07 03:23

I\'m currently trying to wrap my head around learning Python and I\'ve come to a bit of a stall on recursive functions. In Think Python, one of the exercises is to write a f

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-07 03:35

    def is_power (a, b):
    
        if a == 1:
            return True
        if a == 0 and b == 0:
            return True
        if a == 0 or b == 0:
            return False
        if a%b != 0:
            return False
        elif is_power ((a/b), b):
            return True
    

提交回复
热议问题