Created
April 10, 2019 20:17
-
-
Save Sean-Bradley/4735e79e8f2d5a3e804c5f0a814d7cd6 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 Light: | |
"""The Reciever""" | |
def turn_on(self): | |
print("Light turned ON") | |
def turn_off(self): | |
print("Light turned OFF") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment