Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ofelix03/cb420ddd40a889807fedbf972568b339 to your computer and use it in GitHub Desktop.

Select an option

Save ofelix03/cb420ddd40a889807fedbf972568b339 to your computer and use it in GitHub Desktop.
string-concatenations-with-comma-delimeters-better
names = ['Samuel Mensah', 'Thomas Fynn', 'George Stone']
names_str = ", ".join(names)
print("names_str: ", names_str)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment