Is there a more idiomatic way to sum strings in Python than by using a loop?
length = 0
for string in strings:
length += len(string)
I tried sum()
, but it only works for integers:
>>> sum('abc', 'de')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: sum() can't sum strings [use ''.join(seq) instead]