Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Last active March 3, 2021 00:20
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/fa51a860a56619c1bad51fb7b4ca3675 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/fa51a860a56619c1bad51fb7b4ca3675 to your computer and use it in GitHub Desktop.
num=[1,2,3,4,5]
#unpacking only first and second element. Remaining all elements to be captured in a list
a,b,*c= num
print (a)#Output: 1
print (b)#Output: 2
print (c)#Output: [3,4,5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment