Question: how do you do 2 and 4 with python? SimFin - AP Question - 7 (Lists) Create the following two lists: list1 = [1, 2,
SimFin - AP Question - 7 (Lists) Create the following two lists: list1 = [1, 2, 3, 6, [2, 3, 4).. 'Sooner!') list2 = [["Stringx",[4.['Go Pokes!',4]]],3] 1. After creating these two lists, concatenate them and store in list3 2. After creating List3, please Replace "Stringx" with "Boomer!" in list list3 3. And Print list3 4. Remove 'Go Pokes!' from list3, and print list3 (-Hint:Use del function) 79): listi = [1, 2, 3, 6, [2, 3, 4], 'Sooner!'] 30]: list2 = ["Stringx", [4, ['Go Pokes!',4]]],3] 1]: list3 = listi[:] + list2[:] print(list) [1, 2, 3, 6, [2, 3, 4], 'Sooner!', ['Stringx', [4, ['Go Pokes!', 4]]], 3] 1: print((list2) [:-91) U
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
