Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created March 3, 2021 00:47
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/1b4f13535bb00510ff05ed5fb6fac1b1 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/1b4f13535bb00510ff05ed5fb6fac1b1 to your computer and use it in GitHub Desktop.
#unpacking list of tuples
emp_info= [('name','indhu'),('exp',6),('skill','Python')]
key,value=zip(*emp_info)
print (key)
#Output:('name', 'exp', 'skill')
print (value)
#Output:('indhu', 6, 'Python')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment