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
class testclass: | |
""" My little class experiment """ | |
classvar1 = "Wat" | |
classvar2 = "this" | |
def __init___(self,passedvar): | |
print "inside the init thing" | |
self.var = "idk" | |
self.var1 = passedvar | |
print passedvar | |