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 Dice Roller RPG Roller

Khaleel Yusuf
Khaleel Yusuf
15,208 Points

Create a new class in dice.py named D20 that extends Die.

Create a new class in dice.py named D20 that extends Die. It should automatically have 20 sides and shouldn't require any arguments to create. Don't know what's wrong.

dice.py
import random


class Die:
    def __init__(self, sides=2):
        if sides < 2:
            raise ValueError("Can't have fewer than two sides")
        self.sides = sides
        self.value = random.randint(1, sides)

    def __int__(self):
        return self.value

    def __add__(self, other):
        return int(self) + other

    def __radd__(self, other):
        return self + other


class D20(Die):
    def __init__(self, sides=20, *args, **kwargs):
        super().__init__()
hands.py
class Hand(list):
    @property
    def total(self):
        return sum(self)

4 Answers

Steven Parker
Steven Parker
230,995 Points

In your override of "__init__", you have established a default value for "sides", but when you call the base (super) implementation, you forgot to pass that argument along to it.

import random


class Die:
    def __init__(self, sides=2):
        if sides < 2:
            raise ValueError("Can't have fewer than two sides")
        self.sides = sides
        self.value = random.randint(1, sides)

    def __int__(self):
        return self.value

    def __add__(self, other):
        return int(self) + other

    def __radd__(self, other):
        return self + other

class D20(Die):
    def __init__(self, sides = 20):
        super().__init__(sides)

class D20(Die): def init(self, sides=20, *args, **kwargs): super().init(sides)

thank you Manish