Computer Science, asked by akshayakaliraj23, 1 year ago

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 saibabach4
1

Answer:

the answer is x=(423, b, 37, f)

Answered by kashishkhajuria4
0

Answer:x[2] == 47, y[1] == 37, w[2] == 47, u[1] == 53

Explanation:

Similar questions