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 trialAndreas Ragnar Hansen
1,871 Pointshelp 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
1 Answer
MUZ140889 Dephine Chenayi Chihota
6,766 Pointshie 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
1,871 PointsThanks I wasn't quite sure with the question. Thanks for the help
MUZ140889 Dephine Chenayi Chihota
6,766 Pointsglad I could help, don't forget to upvote
Andreas Ragnar Hansen
1,871 PointsAndreas Ragnar Hansen
1,871 PointsMy bad! The answer should be help(str.center)