Hello!
I want to format a list into a string in this way:
[1,2,3] => '1 2 3'. How to do this?
Is there any customizable formatter in Python as Common Lisp format?
|
1
|
|
|
|
|
|
|
||||||||||
|
|
|
First, convert any element into a string, then join them into a unique string. |
||||||
|