Skip to content

Instantly share code, notes, and snippets.

@96998
96998 / eighth-oop_Class1.py
Created December 14, 2018 13:52
Python base
class Myfirst(object):
def __init__(self,name):
self.name=name
def __init__(self):
print("no arguments")
def f(self):
print(self.name)
if __name__=='__main__':
# c1 = Myfirst("CJJ") #this will be wrong