1
Question Question 1(a)
Find the output generated by following code fragments :
plane = ("Passengers", "Luggage")
plane[1] = "Snakes"Output
TypeError: 'tuple' object does not support item assignment
Explanation
Since tuples are immutable, tuple object does not support item assignment.