The output of this Python code would be:a = [‘mn’, ‘op’]for i in a:i.upper()print(a) - Study24x7
Social learning Network
study24x7

Default error msg

Login

New to Study24x7 ? Join Now
Already have an account? Login
23 Feb 2024 03:08 PM study24x7 study24x7

The output of this Python code would be:

a = [‘mn’, ‘op’]
for i in a:
i.upper()
print(a)

A

[None, None]

B

[‘MN’, ‘OP’]

C

[‘mn’, ‘op’]

D

None of the above

study24x7
Write a comment
Most Related Articles