what am I missing logarithm python

前端 未结 0 1601
野的像风
野的像风 2021-01-18 03:52
import math
def iterated_logarithm(n:float) -> int:
    while n <= 1 :
        return 0
    else:
        return  int(math.log(n ,2)) 

print(iterated_logarith         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题