What will be the output of the following code?
x = (1, 2, 3)
x[1] = 4 print(x)
Опрос
- (1, 4, 3)
- [1, 4, 3]
- Error
- (1, 2, 3)