How to convert List of Characters to String in Python?

preview_player
Показать описание
To convert a list of characters to a string value in Python, you can use string join method. Call join method on an empty string, and pass the given list of characters, as argument to the join method. The join method returns a string value, created by joining the elements in the given list, with the empty string as delimiter between the elements.

References
=========
Python String join() method

Python Tutorial
Рекомендации по теме