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

Python ljust()方法

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

語法

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

str.ljust(width[, fillchar])

參數

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

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

返回值

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

例子

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

#!/usr/bin/python

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

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

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

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