Hacker News new | ask | show | jobs
by Kilimanjaro 5700 days ago
One liner

    def fact(n): return n*fact(n-1) if n>1 else 1