0 votes
in Python by
Read the Following code:

x = ['XX', 'YY']  

for i in a:  

    i.lower()  

print(i)  

What will be the output of this program?

i) ['XX', 'YY']

ii) ['xx', 'yy']

iii) [XX, yy]

iv) None of these

Related questions

0 votes
asked Sep 29, 2021 in Python by john ganales
0 votes
asked Sep 29, 2021 in Python by john ganales
...