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

Moe Myint Kyal Sin
PLUS
Moe Myint Kyal Sin
Courses Plus Student 553 Points

How is not working with help(str)and I try help(object) of my answer. What is the correct answer and please explain.

I just new of python and I start learning python today last few hours and I can't keep on going because of this question and I don't know how to pass on.

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points
# to get help use
help()

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

# to get help on a method, such as, `upper()` inside a class, such as, `str` use
help(str.upper)