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 trialstephenallison
8,559 PointsPython Basics - Quiz Question 3 of 4 - Shell Basics
I've tried multiple terms. Help, print, console and none of them are correct. Do not remember seeing this in previous videos and would like an explanation.
john larson
16,594 Pointsin the shell type in help(). But, inside the parenthesis type in the thing you want help with. To be even more specific you can add on the particular method you are looking for. If you just want to see it instead of working it out, I put it in the answer.
john larson
16,594 Points:D
2 Answers
john larson
16,594 Pointshelp(str.upper)
stephenallison
8,559 PointsJohn, Thank you so much for the explanation
Ibrahim Ayub
Courses Plus Student 504 Pointsit didn't work for me?
stephenallison
8,559 Pointsstephenallison
8,559 PointsTo get look up the documentation about the str class's upper method, I'd use help( ).
Be explicit!
This is the question that i need help with.