Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created March 2, 2021 23:35
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/180cc8845df668af34c49430d32eafe4 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/180cc8845df668af34c49430d32eafe4 to your computer and use it in GitHub Desktop.
emp_info=['Python',5,'Developer']
#List unpacking
skill,exp,role=emp_info
print (skill)#Output:Python
print (exp)#Output:5
print (role)#Output:Developer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment