Advertisements
Advertisements
प्रश्न
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 = "#")
लघु उत्तर
उत्तर
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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?