Skip to content

Instantly share code, notes, and snippets.

@raeq
Created July 18, 2020 20:45
Show Gist options
  • Save raeq/074cfa5d3e82b1e6043e10d66873492f to your computer and use it in GitHub Desktop.
Save raeq/074cfa5d3e82b1e6043e10d66873492f to your computer and use it in GitHub Desktop.
Concatenate values to a string
def concatenate(*argv)->str:
return ''.join(argv)
assert concatenate("a", "b", "c") == "abc"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment