Last active
January 20, 2022 23:41
-
-
Save temmyzeus/43392a753a48365f338a678664c57cb5 to your computer and use it in GitHub Desktop.
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
# Accessing Class / Static Variables from the class itself | |
print(Item.percent_off) | |
# Accessing Class / Static Variables from the instance object | |
print(burger.percent_off) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment