Computer Science, asked by Arshia6383, 10 months ago

Consider the following lines of Python code.x = [13,4,17,1000] w = x[1:] u = x[1:] y = x u[0] = 50 y[1] = 40 Which of the following is correct?x[1] == 40, y[1] == 40, w[0] == 4, u[0] == 50x[1] == 50, y[1] == 40, w[0] == 50, u[0] == 50x[1] == 4, y[1] == 40, w[0] == 4, u[0] == 50x[1] == 40, y[1] == 40, w[0] == 50, u[0] == 50​

Answers

Answered by Anonymous
0

Answer:

there is syntax error in the code itself so it is difficult to find the correct option ...

please send the code again after verifying the code...

Regards.

Similar questions