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 (Retired) Say Hello to Python Help Hotline

Andreas Ragnar Hansen
Andreas Ragnar Hansen
1,871 Points

help function python

I'm not sure if I understand this question correctly. All my answers give me a bummer. Here the question

Quiz Question: To get help for the method center that also belongs to the str class, we would use....?

Here I would say dir(str), but it is wrong

Andreas Ragnar Hansen
Andreas Ragnar Hansen
1,871 Points

My bad! The answer should be help(str.center)

1 Answer

hie Andreas, its asking you to get help so here you should use help() and not dir(). now to include the method center you use str.center, therefore your final statement should be

help(str.center)

its hinted in the question though.

Andreas Ragnar Hansen
Andreas Ragnar Hansen
1,871 Points

Thanks I wasn't quite sure with the question. Thanks for the help

glad I could help, don't forget to upvote