+1 vote
in Python by
Read the Following program:

x = 'pqrs'  

for i in range(len(x)):  

    x[i].upper()  

print (x)  

Which of the following is the correct output of this program?

i) PQRS

ii) pqrs

iii) qrs

iv) None of these

Related questions

+1 vote
asked Jan 19, 2021 in Python by SakshiSharma
0 votes
asked Jan 19, 2021 in Python by SakshiSharma
...