InterviewSolution
Saved Bookmarks
| 1. |
Explain Parameters of str.rjust(width[, fillchar]) |
|
Answer» width — This is the string length in total after padding. fillchar — This is the filler character, default is a space. |
|