Untitled

 avatar
unknown
plain_text
a year ago
197 B
7
Indexable
# Define a list of characters
char_list = ['h', 'e', 'l', 'l', 'o']

# Convert the list of characters into a string
char_string = ''.join(char_list)

# Print the resulting string
print(char_string)
Editor is loading...
Leave a Comment