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 Third Quiz

fredrik loeknes
fredrik loeknes
74 Points

they ask for fill out help ( and they talk about str and upper and its not that words you can fill in. I get wrong answe

str upper? wtf is this. i havent even learned about str and upper in help and lets say i did. i cant get past this quiz at this low lvl. i want to learn, not get stuck after 5 min.. atleast let me skipp this.

Michael Hulet
Michael Hulet
47,912 Points

Hi Fredrik! Are you talking about a different quiz than the one that's linked? I don't see any questions that ask you to know about str or str.upper yet

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

The question, from another quiz, is asking to extend your knowledge of using help() from what was shown in the video.

#  to get help on a module or object, such as str, use 
help(str)

#  to get help on an object method, such as, upper use 
help(str.upper)

Post back if you need more help. Good luck!!!