python黑客写阶乘 2015/07/16 32181 清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>> import sys @tailcall def fact(x, acc=1): if x: return fact(x.__sub__(1), acc.__mul__(x)) return acc sys.stdout.write(str(fact(6)) + '\n')