"Robert L." <No_spamming@noWhere_7073.org> writes:
>> Find the sum of the digits in the number 100!
> In Python?

So you have come to plague us here too.

>>> sum(ord(c)-ord('0') for c in str(reduce(lambda a,b: a*b, range(1,101),1)))
648
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to