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 trialTinotenda Emmanuel Nyamukapa
5,127 PointsMagical Method __str__ giving me some problems
I'm having trouble with my code, please assist:
class Letter:
def __init__(self, pattern=None):
self.pattern = pattern
def __str__(self):
calling
for item in self.pattern:
if '.' in self.pattern:
return 'dot'
elif '_' in self.pattern:
return 'dash'
return '-'.join(self.pattern)
class S(Letter):
pass
Steven Parker
231,236 PointsSteven Parker
231,236 PointsThis look like the same issue as your previous question, see the anwers(s) posted there. Some of the hints already given still need to be incorporated in the code (the last one in particular).