Report Bug
Qus :

What does the following code print ?

x = 'mohan'
for i in range (len(x)):
       x[i].upper()
print (x)

Qus

निम्नलिखित कोड क्या प्रिंट करता है?

x = 'mohan'
for i in range (len(x)):
       x[i].upper()
print (x)


A. mohan
B. MOHAN
C. Error
D. None of These


Solution
A. mohan






Report Bug