-
-
Save resba/4687149 to your computer and use it in GitHub Desktop.
HowDoIPython
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 TestClass: | |
def __init__(one,two,three): | |
self.one = one | |
self.two = two | |
self.three = three | |
def getOne(): | |
return self.one | |
def getTwo(): | |
return self.two | |
def getThree(): | |
return self.three | |
def setOne(s): | |
self.one = s | |
def setTwo(s): | |
self.two = s | |
def setThree(s): | |
self.three = s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment