Advertisements
Advertisements
Question
Write the output displayed on execution of the following Python code:
LS= ["HIMALAYA'', "NILGIRI", "ALASKA'', "ALPS"]
D={}
for S in LS:
if len(S) % 4 == 0:
D[S] = len(S)
for K in D:
print (K, D[K], sep = "#")
Short Answer
Solution
Output:
HIMALAYA#8
ALPS#4
Explanation: 'S' in the code selects each value from the list in the for loop. Next, it determines how long the chosen string item in 'S' is. The string item and its length are inserted as key and value pairs in a dictionary if the length is divisible by 4. After that, the dictionary's contents are printed.
shaalaa.com
Is there an error in this question or solution?