Question: Q1 Question 1 1 Point What does the variable count contain after the following code runs? 1st = [[0, 1], [0, 1], [0, 0]] count

Q1 Question 1 1 Point What does the variable count contain after the following code runs? 1st = [[0, 1], [0, 1], [0, 0]] count = [0, 0] for row in lst: for item in row: count [item] += 1 O [4, 2] O [0, 1, 0, 1, 0, 0] 6 O [0, 0 Save Answer Q2 Question 2 1 Point Suppose we have this 2D list: 1st = [["a", "b", "c"], ["d", "e", "f", "g"]] Only one of the following statements will be True. Which one? O "a" in lst Olen(1st) == 7 ["a", "b", "c"] in 1st O ["d", "e", "f"] in 1st
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
