+1 vote
in Python by
Read the Following program:

x = ['xy', 'yz']  

for i in a:  

    i.upper()  

print(i)  

Which of the following is correct output of this program?

i) ['xy', 'yz']

ii) ['XY', 'YZ']

iii) [None, None]

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
...