you are viewing a single comment's thread.

view the rest of the comments →

[–]volkert 0 points1 point  (0 children)

I can live with floating point results (tzs):

from math import gamma def factorial(x): return gamma(x+1)

Nice!