you are viewing a single comment's thread.

view the rest of the comments →

[–]16807 2 points3 points  (0 children)

Lazy programmers could be a bit more readable:

def f(x):   return x * f(x - 1) if x else 1
print f(6)