Skip to content

Instantly share code, notes, and snippets.

@arielmagbanua
Created September 30, 2021 15:13
Show Gist options
  • 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