Lista formatów w Python String
lst = ["hi", "there"]
print(", ".join(lst))
cli
--------------
hi, there
Fair Finch
lst = ["hi", "there"]
print(", ".join(lst))
cli
--------------
hi, there