1) What is the output of the following python code? n 3[1] for i in range(len(n)): n[1]-n[1]+1 print(n) A. (1, 1, 1] B.
Posted: Tue Apr 12, 2022 10:21 am
1) What is the output of the following python code? n 3[1] for i in range(len(n)): n[1]-n[1]+1 print(n) A. (1, 1, 1] B. [1, 2, 3] c. [0, 1, 2] D. [1][2][31