Answer to Question #85336 in Python for MAtt

Question #85336
Write the definition of a class Counter containing:
An instance variable counter of type int, initialized to 0.
A method called increment that adds one to the instance variable counter. It does not accept parameters or return a value.
A method called get_value that doesn't accept any parameters. It returns the value of the instance variable counter.
1
Expert's answer
2019-02-21T11:22:08-0500
class Counter:
  counter = 0
  def increment(self):
    self.counter = self.counter + 1
  def get_value(self):
    return self.counter




Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS