Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

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