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 trial

Python Python Basics (2015) Python for Beginners Second Quiz

stephenallison
stephenallison
8,559 Points

Python 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.

stephenallison
stephenallison
8,559 Points

To 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.

in 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.

:D

2 Answers

help(str.upper)

stephenallison
stephenallison
8,559 Points

John, Thank you so much for the explanation