Python 3 MCQ (SET-7) – Multiple Choice Questions and Answers
What will be the output after the following statements? b = 3 for a in range(10, 1): b -= a + 1 print(b) a. 7 b. 4 c. 3 d. 8 What will be the output after the following statements? b = 1 for a in range(1, 5): b *= a + 1 print(b) a. … Read more