Write a class called Score that:
- Takes no arguments to its
__init__(besidesself). - Sets
self.pointsto0in__init__. - Has a method
add(self, n)that increasesself.pointsbyn.
Then create one instance, call .add(3) and .add(7), and print
the final points.
Expected output:
10