0 votes
in Python by

What is the output of print tinylist * 2 if tinylist = [123, 'john']?

A - [123, 'john', 123, 'john']

B - [123, 'john'] * 2

C - Error

D - None of the above.

1 Answer

0 votes
by

Ans A - [123, 'john', 123, 'john']

Related questions

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