Python Convert List into a space-separated string
refer to code
..
lst = ['I', 'am', 'a', 'humen']
strlist = ' '.join(lst)
print(strlist, type(strlist))
..
I am a humen <class 'str'>
Thank you.
The study blog from marearts.com
Computer Vision & Machine Learning Research Laboratory