Open In App

Python-Quizzes | Output Type | Question 12

Like Article
Like
Save Article
Save
Share
Report issue
Report

What is the output of the following code? 

Python3




print tuple[1:3] if tuple == ( \'abcd\', 786 , 2.23, \'john\', 70.2 ) else tuple()


(A)

( \’abcd\’, 786 , 2.23, \’john\’, 70.2 )

(B)

abcd

(C)

(786, 2.23)

(D)

None of the above


Answer: (D)

Explanation:

Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 28 Jun, 2021
Like Article
Save Article
Share your thoughts in the comments
Similar Reads