0
Convert a list
How to convert a list of different strings into one string in python?
1 Answer
+ 3
you can try also this:
l=['Aravind','Krishnan']
print(' '.join(l))
# output :
# Aravind Krishnan
How to convert a list of different strings into one string in python?