Skip to content

Instantly share code, notes, and snippets.

@arielmagbanua
Created September 30, 2021 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arielmagbanua/79a570f16e5ba30c1be9eab22802b073 to your computer and use it in GitHub Desktop.
Save arielmagbanua/79a570f16e5ba30c1be9eab22802b073 to your computer and use it in GitHub Desktop.
Concatenate Tuple
# concatenate tuple
data = (1, 2, 3)
result = ''.join([str(item) for item in data])
print(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment