

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following? for i in 'abcd'[::-1]: print (i) |
A. | a b c d |
B. | d c b a |
C. | error |
D. | none of the mentioned |
Answer» C. error | |