Login
Remember
Register
Ask a Question
The output of this Python code would be:
0
votes
asked
Aug 22, 2022
in
Python
by
Robindeniel
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
python
code
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 22, 2022
by
Robindeniel
3) [‘mn’, ‘op’]
...