what is the difference between this two; class Person(object): and class Person:
class Person(object):
   
  # Constructor
  def __init__(self, name, id):
    self.name = name
    self.id = id
what is the difference between this two; class Person(object): and class Person:
class Person(object):
   
  # Constructor
  def __init__(self, name, id):
    self.name = name
    self.id = id