Computer Science, asked by chouhanbharat9013, 1 year ago

Write a python program to convert a list of characters into a string.

Answers

Answered by bk817651
0
s = ['a', 'b', 'c', 'd'] str1 = ''.join(s) print(str1)
Answered by Anonymous
0
s = ['a', 'b', 'c', 'd']str1=".join(s) print (str1)
Similar questions