A = {“A” : “Apple”, “B” : “Ball”, “C” : “Cat”}
Which of the following statement will return : dict_items([(‘A’, ‘Apple’), (‘B’, ‘Ball’), (‘C’, ‘Cat’)])1.print(A.keys( ))
2.print(A.values( ))
3.print(A.Items( ))
4.print(A.get( ))
Posted Date:-2021-12-06 11:12:28