Question: in python please Write a function called get_successive_letters (words) that takes a list of strings as a parameter and returns a string which made up

in python please
Write a function called get_successive_letters (words) that takes a list of strings as a parameter and returns a string which made up by each successive letter in a list of strings based on the position of the string in the parameter list. For example, if a list consists of the following elements: ['example', 'of', 'complete', 'lists'] then, the output will be: 'e' + 'f' + 'm' + 't' = 'efmt' You can assume that the number of characters in each item is bigger than i where i is the position of the item in the parameter string. For example: Test Result print(get_successive_letters(['example', 'of', 'complete', 'lists'])) efmt
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
