str.rjust(width[, fillchar])
width -- 這是填充後總的字串長度
fillchar -- 這是填充符,預設是空格
此方法返回長度(width)向右對齊的字串。填充值是使用指定fillchar(預設為空格)完成的。如果寬度小於 len(s)則返回原始字串。
#!/usr/bin/python3 str = "this is string example....wow!!!" print (str.rjust(50, '*'))
******************this is string example....wow!!!