Implement a PositiveNumber descriptor that:
ValueError for zero or negatives.class Circle:
radius = PositiveNumber()
c = Circle()
c.radius = 5 # OK
c.radius # → 5
c.radius = -1 # raises ValueErrorImplement solve(value) that creates a Circle, sets its radius = value and returns the radius. If value <= 0, return the string "error".
Sample tests