Python-Quizzes | Python Tuples Quiz | Question 3

Last Updated :
Discuss
Comments

What is the output of the following program?

Python
tup1 = (1, 2, 4, 3) 
tup2 = (1, 2, 3, 4) 
print(tup1 < tup2) 

Error

True

False

Unexpected

Share your thoughts in the comments