Create a way to transform `SingleValue` into a number. The standard way is to direct access from the `internal` of it ```python class SingleValue: ... def __float__(self): return float(self.internal) ```
Create a way to transform
SingleValueinto a number.The standard way is to direct access from the
internalof it