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 trialstephan de grove
Courses Plus Student 564 Pointsi do not understand why i'm wrong in my quizz. for calling help on the str function we should use help(str) it why am
why am i wrong ?
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHey Stephan,
It seems you missed a part of the instructions.
The question is asking how to find information on upper
method, which is part of the str
class. So, you need to be more specific in your answer and not just use the 'generic' str
. So, you need to use dot notation
to specify which method on the class you want help with... str.upper
.
Keep Coding! :)