1.

What is the output of the following? x = 'abcd' for i in range(len(x)): x[i].upper() print (x)

A. abcd
B. ABCD
C. error
D. none of the mentioned
Answer» B. ABCD


Discussion

No Comment Found