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 trialKhaleel Yusuf
15,208 PointsCreate 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.
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__()
class Hand(list):
@property
def total(self):
return sum(self)
4 Answers
Steven Parker
231,236 PointsIn 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.
Manish Kumar Meena
Python Development Techdegree Student 2,594 Pointsimport 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)
Richard Cunningham
1,996 Pointsclass D20(Die): def init(self, sides=20, *args, **kwargs): super().init(sides)
Bashir Orfani
13,170 Pointsthank you Manish