Python-Quizzes | Output Type | Question 12
What is the output of the following code? Consider Python 2.7.
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