Python-Quizzes | Output Type | Question 12
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
Please Login to comment...