For What condition this Python Function would terminate?

后端 未结 0 958
野趣味
野趣味 2021-01-20 08:49
def mys(m):
  if m == 1:
      return(1)
  else:
      return(m*mys(m-1))

I encountered this function on the web. It\'s above my level so can you gu

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