Sorry! Posting Assignment is allowed only for commercial accounts.
What is the output of the following?mylist = ['geeks', 'forgeeks']for i in mylist: i.upper()print(mylist)
I=list("1234")I[0] = I[1] = 6print(I)