位置:首頁 > 腳本語言 > Python教學 > Python rjust()方法

Python rjust()方法

rjust()該方法返回字符串合理字符串的右邊的長度寬度。填充是通過使用指定的fillchar(默認為空格)。如果寬度小於len(s)返回原始字符串。

語法

以下是rjust()方法的語法:

str.rjust(width[, fillchar])

參數

  • width -- 這是字符串填充後總共的長度。

  • fillchar -- 這是填充字符,默認為空格。

返回值

此方法返回字符串合理字符串的右邊的長度寬度。填充是通過使用指定的fillchar(默認為空格)。如果寬度小於 len(s)返回原始字符串。

例子

下麵的例子顯示了rjust()方法的使用。

#!/usr/bin/python

str = "this is string example....wow!!!";

print str.rjust(50, '0');

當我們運行上麵的程序,它會產生以下結果:

000000000000000000this is string example....wow!!!