Open In App

Python-Quizzes | Python Dictionary Quiz | Question 6

Like Article
Like
Save
Share
Report

Question 6:Find the output of the following program:




a = {i: i * i for i in range(6)} 
print (a) 


(A) Dictionary comprehension doesn’t exist
(B) {0: 0, 1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6:36}
(C) {0: 0, 1: 1, 4: 4, 9: 9, 16: 16, 25: 25}
(D) {0: 0, 1: 1, 2: 4, 3: 9, 4: 16, 5: 25}


Answer: (D)

Explanation: The above piece of code written in curly braces generate the whole Dictionary.

Quiz of this Question


Last Updated : 17 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads