We're a place where coders share, stay up-to-date and grow their careers.
pardon me, I mistook summ as a typo for sum, which is a built-in function that performs the same functionality as the summ. I run your code not long from now.
summ
sum
summ= lambda total: reduce(operator.add, total)
was translated
def summ(total): return reduce(operator.add, total)
In all, all is good. Thanks!!
yeah that's cool
pardon me, I mistook
summ
as a typo forsum
, which is a built-in function that performs the same functionality as thesumm
. I run your code not long from now.was translated
In all, all is good. Thanks!!
yeah that's cool