The reduce() function
Now, it is time for some reduction! As before you'll be given three tasks to complete. Use lambda expressions!
The necessary functions from the functools module are already imported for you.
Deze oefening maakt deel uit van de cursus
Practicing Coding Interview Questions in Python
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
# Reverse a string using reduce()
string = 'DataCamp'
inv_string = reduce(____)
print('Inverted string = ' + inv_string)