Created
October 19, 2015 09:00
-
-
Save OrangeTux/97149009564ca3a28b00 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class Zone | |
def __init__(self, damper=0): | |
self.damper = damper | |
Zone() # zone.damper is 0 | |
Zone(1) # zone.damper is 1 | |
Zone(damper=2) # zone.damper is 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment