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 trialCarl Taggett
10,321 PointsIn order to call the stop method inside a method, you'd need to write ___.___
I am having trouble figuring this one out. It seems that more code is needed than . maybe I am looking in the wrong area.
In order to call the stop method inside a method, you'd need to write .
car_one.go('slow") ?
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsBreaking it down, to call a the stop
method in a class instance named, say, my_class, use my_class.stop()
, when calling the a method from within the same class. use self.
in place of the instance name: self.stop()
Post back if you need more help. Good luck!!
Kushal Khemka
Courses Plus Student 1,503 PointsKushal Khemka
Courses Plus Student 1,503 PointsBUT THE QUESTION NOT ACCEPTING WRITE ANSWER
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 Points