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

to get help about the rjust method in the str class I would type?

just taking the quiz in python

2 Answers

Thank you Nathan! I entered exactly that in the python exercise and I got a "Bummer" message.

Nathan Tallack
Nathan Tallack
22,159 Points

Oh, 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)

>>>