

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the code shown below? '{a}{b}{a}'.format(a='hello', b='world') |
A. | ‘hello world’ |
B. | ‘hello’ ‘world’ ‘hello’ |
C. | ‘helloworldhello’ |
D. | ‘hello’ ‘hello’ ‘world’ |
Answer» D. ‘hello’ ‘hello’ ‘world’ | |