Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created March 3, 2021 00:50
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 IndhumathyChelliah/b2ab113e0eb650f0edb667c6ca208202 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/b2ab113e0eb650f0edb667c6ca208202 to your computer and use it in GitHub Desktop.
# Tuple unpacking
num=(1,2,3,4,5)
a,b=num
#Output: ValueError: too many values to unpack (expected 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment