Consider the following lines of Python code.which of the following is true | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Consider the following lines of Python code.which of the following is true

a = 'nptel' b = [12,14,16] c = 72 x = [a,b,c] y = [a,b[:],c] u = x[:] v = y b[1] = 17 v[1][1] = 15 Which of the following is correct? A) x[1][1] == 14, y[1][1] == 14, u[1][1] == 15, v[1][1] == 15 B) x[1][1] == 17, y[1][1] == 15, u[1][1] == 14, v[1][1] == 15 C) x[1][1] == 17, y[1][1] == 15, u[1][1] == 17, v[1][1] == 15 D) x[1][1] == 14, y[1][1] == 15, u[1][1] == 14, v[1][1] == 15

14th Feb 2018, 3:29 PM
darshan ks
darshan ks - avatar
1 Answer
0
17 15 17 15
15th Feb 2018, 4:32 PM
SHAIK RAFI
SHAIK RAFI - avatar