album art

猫猫实验室(珊瑚虫版) PyLab

def factorial(n): if n==0: return 1 return n*factorial(n-1) print(factorial(8))