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 trialAmel Eiland
303 Pointsto get help about the rjust method in the str class I would type?
just taking the quiz in python
2 Answers
Nathan Tallack
22,160 Pointshelp(str.rjust)
:)
Amel Eiland
303 PointsThank you Nathan! I entered exactly that in the python exercise and I got a "Bummer" message.
Nathan Tallack
22,160 PointsOh, that may not work in the workspace. That will work in your local Python environment on your PC though.
Will look something like this.
>>> help(str.rjust)
Help on method_descriptor:
rjust(...)
S.rjust(width[, fillchar]) -> string
Return S right-justified in a string of length width. Padding is
done using the specified fill character (default is a space)
>>>