Examveda

What will be the output of the following Python code?
>>> a=(1,2)
>>> b=(3,4)
>>> c=a+b
>>> c

A. (4,6)

B. (1,2,3,4)

C. Error as tuples are immutable

D. None

Answer: Option B


This Question Belongs to Python Program >> Tuples In Python

Join The Discussion

Related Questions on Tuples in Python