Vidyalelo
Python · Q145

Functions in Python

Programming · Python · question 145

Q145

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

A.
3456
Answer
B.
(3456)
C.
('3456')
D.
('3456',)

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board