Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shabbirbhimani/5e3e76a9a5351d72d5553e06123cb5e7 to your computer and use it in GitHub Desktop.
Save shabbirbhimani/5e3e76a9a5351d72d5553e06123cb5e7 to your computer and use it in GitHub Desktop.
4.9 Deleting Values
# deleting variable
customerName = "David"
customerAge = 28
customerInterest = ["BasketBall", "Programming"]
# deleting the variable
del customerName, customerAge, customerInterest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment