Write a python program to convert a list of characters into a string.
Answers
Answered by
0
s = ['a', 'b', 'c', 'd'] str1 = ''.join(s) print(str1)
Answered by
0
s = ['a', 'b', 'c', 'd']str1=".join(s) print (str1)
Similar questions