5) What is the output of the following Python code? x = ("B": 2, "R": 5, "T":4} for i inx print(x[1], end**) A. 264 B. B
Posted: Tue Apr 12, 2022 10:21 am
5) What is the output of the following Python code? x = ("B": 2, "R": 5, "T":4} for i inx print(x[1], end**) A. 264 B. BRT C. B2R6T4 D. B:2R:61:4