- 3
Consider the following lines of Python code.
a = 'nptel' b = [12,14,16] c = 72 x = [a,b,c] y = [a,b[:],c] u = x[:] v = y b = [12,17,16] v[1][1] = 15
3 ответов
+ 2
Did you press post before you finished writing the question?
- 1
x= [13,4,17,1000]
w=x[1:]
u=x[1:]
y=x
u[0]=50
y[1]=40
which answer ples
- 2
x[1][1] == 14, y[1][1] == 15, u[1][1] == 14, v[1][1] == 15