2) What is the output of the following Python code fragment? dic= {3:2, 6:4, 5:6, 2:8 } dic.pop(2) print(dic) A. {3:2, 6
Posted: Tue Apr 12, 2022 10:21 am
2) What is the output of the following Python code fragment? dic= {3:2, 6:4, 5:6, 2:8 } dic.pop(2) print(dic) A. {3:2, 6:4, 5:6) B. {3:2, 6:4, 2:8) C. {3:2, 5:6, 2:8) D. It will generate runtime error