Created
March 29, 2018 06:12
-
-
Save shabbirbhimani/5e3e76a9a5351d72d5553e06123cb5e7 to your computer and use it in GitHub Desktop.
4.9 Deleting Values
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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