Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 16, 2020 03:46
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/001227725988e8f2213b2306fdd5c61d to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/001227725988e8f2213b2306fdd5c61d to your computer and use it in GitHub Desktop.
t=('red','blue','green',1,2,3)
#deleting tuple
del t
#since tuple is deleted, it no longer exists.
print (t) #Output: NameError: name 't' is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment