File: LP6E/Chapter30/number.py

class Number:
    def __init__(self, start):                  # On Number(start)
        self.data = start
    def __sub__(self, other):                   # On instance - other
        return Number(self.data - other)        # Result is a new instance



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