1.

What is the output of the following? x = [34, 56] print((''.join(list(map(str, x))),))

A. 3456
B. (3456)
C. (‘3456’)
D. (‘3456’,)
Answer» E.


Discussion

No Comment Found