Question: This is python code. My question is why does 2 get swapped with one? Can someone explain this code? 1 lst = [1,2,3,4,5,6,8] 2 lst[0],
This is python code. My question is why does 2 get swapped with one? Can someone explain this code?

1 lst = [1,2,3,4,5,6,8] 2 lst[0], 1st[1]=lst[1], 1st[0] ] 3 print(lst) [2, 1, 3, 4, 5, 6, 8]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
