Examveda

What will be the output of the following Python code?
>>> a,b=6,7
>>> a,b=b,a
>>> a,b

A. (6,7)

B. Invalid syntax

C. (7,6)

D. Nothing is printed

Answer: Option C


This Question Belongs to Python Program >> Tuples In Python

Join The Discussion

Related Questions on Tuples in Python