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 trialmandlaenkosi moyo
3,604 PointsWe're playing a popular board game about snatching up real estate in Atlantic City. I need you finish out the Capitalism
please help me in this one l stuck
Tatenda Marshall Manuel
8,055 PointsTatenda Marshall Manuel
8,055 Pointsfrom dice import D6
class Hand(list): def init(self, size=2, die_class=D6, *args, **kwargs): if not die_class: raise ValueError("You must provide a die class") super().init()
i have changed size to 2 and die_class to D6