Post

@PythonPr Answer: D) Error
A tuple in Python is an immutable data type, which means that once it is created, its elements cannot be changed, added, or removed. In the code provided:
x = (1, 2, 3) creates a tuple named x containing the integers 1, 2, and 3.
English

@PythonPr Answer:-(D) Error
tuples are immutable so if you change the value of any index of tuple it gives 'TypeError' error.
English

@PythonPr ERROR, because tuple in python is immutable so it can't be done
English

@PythonPr D. tuple objects are immutable type. So, second statement is illegal.
English















