class workers(): def __init__(self): pass def working(self): self.dene = 'STRİNG DEĞERİ' return self.dene obj = workers() print(obj.working())