Q27Multiple correct4 Marks30 Apr 2023
Write a function named length_analysis that accepts a list of distinct words L as argument. It should return a dictionary D that has the following structure:
- keys: words in the list
- values: length of the word (key)
Select all correct implementations of this function.