Is the following Python code valid?
>>> a=(1,2,3)
>>> b=a.update(4,)
>>> a=(1,2,3)
>>> b=a.update(4,)
A. Yes, a=(1,2,3,4) and b=(1,2,3,4)
B. Yes, a=(1,2,3) and b=(1,2,3,4)
C. No because tuples are immutable
D. No because wrong syntax for update() method
Answer: Option C
Join The Discussion