>>> import functools as ft
>>> bk = ft.reduce(lambda x, y: x[0] + "." + y[0], ['alfa', 'bravo', 'charlie', 'delta'])
>>> bk
'a.d'
>>> km = ft.reduce(lambda x, y: x + y, [1, 2, 3, 4])
>>> km
10
>>> bk = ft.reduce(lambda x, y: x[0] + y[0], ['alfa', 'bravo', 'charlie', 'delta'])
>>> bk
'ad'
>>>
I expected something like 'a.b.c.d' or 'abcd'. Somehow, can't explain the results. There are similar questions here, but not quite like this one.
Convert list to string using reduce() in python. functools module in python provides a function reduce(), which accepts a iterable sequence as argument and a function as argument. This function generates a single value from all the items in given iterable sequence.
To convert a list to a string, use Python List Comprehension and the join() function. The list comprehension will traverse the elements one by one, and the join() method will concatenate the list's elements into a new string and return it as output.
Python's reduce() is a function that implements a mathematical technique called folding or reduction. reduce() is useful when you need to apply a function to an iterable and reduce it to a single cumulative value.
The result of executing the function passed as the first parameter, will be the first parameter to that function in the next iteration. So, your code works like this
lambda x, y: x[0] + "." + y[0]
When x
, y
are 'alfa'
and 'bravo'
respectively, a.b
.
Now, x
will be a.b
and y
will be 'charlie'
, so result will be a.c
Now, x
will be a.c
and y
will be 'delta'
, so result will be a.d
That is why the result is a.d
To get what you wanted, take all the first characters from all the strings to form a list and join all the elements together with .
, like this
print(".".join([item[0] for item in data]))
# a.b.c.d
Note: I won't prefer this way, but for the sake of completeness, you can do it with reduce
, like this
data = ['alfa', 'bravo', 'charlie', 'delta']
print(ft.reduce(lambda x, y: x + ("." if x else "") + y[0], data, ""))
# a.b.c.d
Now, the last empty string will be the first value for x
in the first iteration. And we use .
only if x
is not an empty string otherwise we use an empty string, so that the concatenation would give the result you wanted.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With