0 votes
by

What is the output of print tuple[1:3] if tuple = ( 'abcd', 786 , 2.23, 'john', 70.2 )?

A - ( 'abcd', 786 , 2.23, 'john', 70.2 )

B - abcd

C - (786, 2.23)

D - None of the above.

1 Answer

0 votes
by

Related questions

0 votes
asked May 17, 2019 in Python by Derya
+1 vote
asked Jan 28, 2020 in Data Handling by rahuljain1
...