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
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 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
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
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!