Skip to content
Related Articles
Open in App
Not now

Related Articles

Python | Functions | Question 2

Improve Article
Save Article
  • Difficulty Level : Medium
  • Last Updated : 05 Nov, 2020
Improve Article
Save Article

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

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!