Python 3 MCQ (SET-2) – Multiple Choice Questions and Answers
What will be the output after the following statements? x = [25, 35, 45] y = x[0] print(y) a. x0 b. 25 c. 35 d. 45 What will be the output after the following statements? x = [10, 20, 30] y = x[1] + x[2] print(y) a. 20 b. 30 c. 40 d. 50 What … Read more