Question: Given a list of strings [apple, banana, cherry, date], write a single line of Python code using list comprehension to create a dictionary where the
Given a list of strings ["apple", "banana", "cherry", "date"], write a single line of Python code using list comprehension to create a dictionary where the keys are the strings in the list and the values are the lengths of these strings. The output should be a dictionary: {'apple': 5, 'banana': 6, 'cherry': 6, 'date': 4}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
