Consider the following dictionary.wickets = {"Tests":{"Kumble":[3,5,2,3],"Srinath":[4,4,1,0],"Prasad":[2,1,7,4]},"ODI":{"Kumble":[2,0],"Srinath":[1,2]}} Which of the following statements does not generate an error?
wickets["ODI"]["Prasad"][0:] = [4,4]
wickets["ODI"]["Prasad"].extend([4,4])
wickets["ODI"]["Prasad"] = [4,4]
wickets["ODI"]["Prasad"] = wickets["ODI"]["Prasad"] + [4,4]
Answers
Answered by
0
Answer:
???
Explanation:
Similar questions