Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Object-Oriented Python Inheritance Super-Duper!

the difference between the definition of a variable as an attribute of class or argument in the method

In the below code, once sneaky = True is defined as a class attribute and again it is defined in __init__ method arg. Isn't the outside init definition redundant? If not what is the merit of that?

import random

class Character:
    def __init__(self, name, **kwargs):
        self.name = name

        for key, value in kwargs.items():
            setattr(self, key, value)


class Thief(Character):
    sneaky = True

    def __init__(self, name, sneaky=True, **kwargs):
        super().__init__(name, **kwargs)
        self.sneaky = sneaky

    def pickpocket(self):
        return self.sneaky and bool(random.randint(0, 1))

    def hide(self, light_level):
        return self.sneaky and light_level < 10

2 Answers

Josh Keenan
Josh Keenan
19,652 Points

As far as I am aware, yes it is redundant. Personally to compare differences I would recommend that you play with the code and see what happens when you change things, create a duplicate to do this, then you will learn and understand more about it!

Hi,

I have tried run the code with and without the attribute of the class "sneaky = True" in the class. If I have tested right way, I have got same results from those two. I could change the value of the attribute sneaky = True" to sneaky = False" by creating the instance of the class.

class Thief:
  sneaky = True
  def __init__(self, sneaky = True):
      self.sneaky = sneaky
class Thief:
  def __init__(self, sneaky = True):
      self.sneaky = sneaky