#!/usr/bin/env python # -*- coding: utf-8 -*- def fact(n): if n == 1 : return 1 return n * fact(n-1) print(fact(100))
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/15833.html
#!/usr/bin/env python # -*- coding: utf-8 -*- def fact(n): if n == 1 : return 1 return n * fact(n-1) print(fact(100))
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/15833.html