Report Bug
Qus :

What is the output of the following code:

L=['a','b','c','d']
print ( "".join(L))

Qus

निम्नलिखित कोड का परिणाम क्या है:

L=['a','b','c','d']
print ( "".join(L))


A. Error
B. None
C. abcd
D. [‘a’,’b’,’c’,’d’]


Solution
C. abcd






Report Bug