

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the code shown? '{a}, {0}, {abc}'.format(10, a=2.5, abc=[1, 2]) |
A. | Error |
B. | ‘2.5, 10, [1, 2]’ |
C. | 2.5, 10, 1, 2 |
D. | 10, 2.5, [1, 2]’ |
Answer» C. 2.5, 10, 1, 2 | |