File: class/Workbook/Examples/Lecture7/number.py

class Number:
    def __init__(self, start):              # on Number()
        self.data = start
    def __add__(self, other):               # on x + other
        return Number(self.data + other)



[Home page] Books Code Blog Python Author Train Find ©M.Lutz