How do we create python string from list?


Python has an in-built join() function that returns a string by joining elements in a sequence object by inserting separator between elements. If we need a string without any separator, we initialize it with null string

>>> lst=['h','e','l','l','o']
>>> str=''
>>> str.join(lst)
'hello'

Updated on: 18-Feb-2020

85 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements