Python | Functions | Question 2
What is the output of the following code :
L = [ 'a' , 'b' , 'c' , 'd' ] print ("".join(L)) |
(A) Error
(B) None
(C) abcd
(D) [‘a’,’b’,’c’,’d’]
Answer: (C)
Explanation: “” depicts a null string and the join function combines the elements of the list into a string.
Quiz of this Question
Please Login to comment...