x = [423,'b',37,'f'] u = x[1:] y = u w = x u = u[0:] u[1] = 53 x[2] = 47 what is the output of this python code?
Answers
Answered by
1
Answer:
the answer is x=(423, b, 37, f)
Answered by
0
Answer:x[2] == 47, y[1] == 37, w[2] == 47, u[1] == 53
Explanation:
Similar questions