Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

format list into string python

lst = ["hi", "there"]
print(", ".join(lst))

cli
--------------
hi, there
 
PREVIOUS NEXT
Tagged: #format #list #string #python
ADD COMMENT
Topic
Name
6+5 =