I should define a function pad_with_n_chars(s, n, c) that takes a
string 's', an integer 'n', and a character 'c' and returns
a string consisting of 's' padded with 'c' to create a
string with a centered 's' of length 'n'. For example,
pad_with_n_chars(”dog”, 5, ”x”) should return the
string "xdogx".
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
With Python2.6 or better, there's no need to define your own function; the string format method can do all this for you:
|
|||||||||
|
|
It looks like you're only looking for pointers, not a complete solution. So here's one: You can multiply strings in python: >>> "A" * 4 'AAAA' Additionally I would use better names, instead of s I'd use text, which is much clearer. Even if your current professor (I suppose you're learning Python in university.) uses such horrible abbreviations. |
|||
|
|
I think you should be able to spot a first clue here... |
|||
|
|
|
well, since this is a homework question, you probably won't understand what's going on if you use the "batteries" that are included.
Alternatively, when you are not schooling anymore.
|
||||
|
|
|
|||
|
|
pad_with_n_charsfunction. – Paul McGuire Oct 24 '10 at 20:17