This is probably seriously easy to solve for most of you but I cannot solve this simply putting str()
around it can I?
I would like to convert this list: ['A','B','C']
into 'A B C'
.
In [1]: L = ['A', 'B', 'C']
In [2]: " ".join(L)
Out[2]: 'A B C'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With