0 votes
in Python by

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

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

B - abcd

C - Error

D - None of the above.

1 Answer

0 votes
by

Related questions

0 votes
asked May 17, 2019 in Python by Derya
0 votes
asked May 17, 2019 in Python by Derya
...