2. Change False and 1 to True and 0 in one operation.
3. Extract the element ‘abc’ from the list and assign it to a variable in one operation.
4. Print that variable.
5. Assign the 3 list elements into 3 variables in one operation.
6. Print these variables.
Right Answer:
# Step 1
mylist = ['abc', False, 1, 3.14159]
# Step 2
mylist[1:3] = [True, 0] # Change False and 1 to True and 0
# Step 3
abc_var = mylist.pop(0) # Extract 'abc' and assign it to abc_var
print(abc_var) # Output: 'abc'
# Step 4
var1, var2, var3 = mylist # Assign the remaining list elements to variables
# Step 5
print(var1, var2, var3) # Output: True, 0, 3.14159