Answers for "format list into string python"

1

format list into string python

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

cli
--------------
hi, there
Posted by: Guest on September-11-2021

Code answers related to "format list into string python"

Python Answers by Framework

Browse Popular Code Answers by Language