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
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
Political Science,
5 months ago
Math,
5 months ago
English,
5 months ago
Chemistry,
10 months ago
Math,
1 year ago