Examveda

Is the following Python code valid?
>>> 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


This Question Belongs to Python Program >> Tuples In Python

Join The Discussion

Related Questions on Tuples in Python