4. Dictionary dl={1:10,2:25,3:30} is given. Write a code to
i) append 4: 40 in the given dictionary
ii) Update 2:25 to 2:20 in the given dictionary
Answers
Answered by
0
dl[4] = 40
dl[2] = 20
Similar questions