converting a list of char in on string in python code example
Example 1: turn a string into a list of characters python
#Use the function list()
word = list(word)
Example 2: python character list to string
string_holder = ""
string_list = ( "h", "e", "l", "l" ,"o" )
string_holder.join(string_list)
print(string_holder)
#output
# hello