52.1k views
1 vote
x = ['XX', 'YY'] for i in a: () print(a) What will be the output of this program (Give reason ) A. ['XX', 'YY'] B. ['xx', 'yy'] C. [XX, yy] D. None of these

1 Answer

2 votes

Answer:

x = ['XX', 'YY']

for i in x:

print(i)

User Mirianna
by
8.3k points