Список форматов в String Python

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

cli
--------------
hi, there
Fair Finch