Skip to content
Related Articles
Open in App
Not now

Related Articles

Python-Quizzes | Output Type | Question 12

Improve Article
Save Article
Like Article
  • Difficulty Level : Medium
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article
Like Article

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

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!