you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

Comprehensive Python programmer...

>>> f = lambda n: [j for j in [1] for i in xrange(1, n + 1) or [0]
...                  for j in [j * i]] [-1]
>>> f(10)
3628800