Q. Find errors and rewrite the same after correcting the following code:
(a) d1 = {1:10, 2.5:20, 3:30, 4:40, 5:50, 6:60, 7,70}
(b) d1 (9)=90
(c) del d1 (2)
(d) pop d1 [4]
(e) d1.item ()
(f) d1.key()
(g) d1.value ()
(h) d1.gets (4,80)
(i) d1.len ()
(j) d1.clears ()
Answer :-
a = d1 = {1:10, 2.5:20, 3:30, 4:40, 5:50, 6:60, 7:70}
b = d1 [9]=90
c = del d1 [2.5]
d = d1.pop(4)
e = d1.items()
f = d1.keys()
g = d1.values()
h = d1.get(4,80)
i = len(d1)
j = d1.clear()
Post a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )