0 votes
in Python by
The output of this Python code would be:

select the correct answer from below options

a = [‘mn’, ‘op’]

for i in a:

i.upper()

print(a)

1) [None, None]

2) [‘MN’, ‘OP’]

3) [‘mn’, ‘op’]

4) None of the above

1 Answer

0 votes
by

3) [‘mn’, ‘op’]

Related questions

0 votes
asked Aug 22, 2022 in Python by Robindeniel
0 votes
asked Aug 22, 2022 in Python by Robindeniel
...