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 trialTrace Harris
Python Web Development Techdegree Graduate 22,065 PointsSo I am not able to write for loops in magic methods:
I am not sure why this is not working? If I print(Morris.pattern) I get output of ['.', '.', '.'] if I print(Morris) I get output: dash. I feel that should really work with a for loop. Its unclear to me why I am getting this behavior?
class Letter:
def __init__(self, pattern=None):
self.pattern = str(pattern)
def __str__(self):
for item in self.pattern:
if item == ".":
return "{}".format("dash")
if item == "_":
return "{}".format("dash")
class S(Letter):
def __init__(self):
pattern = ['.', '.', '.']
super().__init__(pattern)
Morris = S()
print(Morris.pattern)
1 Answer
Cooper Runstein
11,850 PointsI think you're somewhat misunderstanding the use of magic methods, you need to actually use the method in order for anything to happen. If you print Morris.str right now it works, except it will only print "dash" because your for loop also doesn't work the way you're expecting it to. As soon as you get either a dot or dash in pattern, your return statement kicks in and ends the function, thus you'll only get one word as the result of the str method.
Trace Harris
Python Web Development Techdegree Graduate 22,065 PointsTrace Harris
Python Web Development Techdegree Graduate 22,065 PointsSo the use of the method should be print(Morris.pattern) I believe this is included as well str() according to the documentation also from my understanding, ts not when you use Morris.str but when you call str() or print() it should loop through the pattern and swap chars. but when i run print( Morris.pattern) its just printing the hardcoded pattern and getting frustrating.