Python rjust()方法

2021-09-04 16:32 更新

Python rjust()方法

Python 字符串 Python 字符串

描述

Python rjust() 返回一個原字符串右對齊,并使用空格填充至長度 width 的新字符串。如果指定的長度小于字符串的長度則返回原字符串。

語法

rjust()方法語法:

str.rjust(width[, fillchar])

參數(shù)

  • width -- 指定填充指定字符后中字符串的總長度.
  • fillchar -- 填充的字符,默認為空格。

返回值

返回一個原字符串右對齊,并使用空格填充至長度 width 的新字符串。如果指定的長度小于字符串的長度則返回原字符串

實例

以下實例展示了rjust()函數(shù)的使用方法:

#!/usr/bin/python

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

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

以上實例輸出結(jié)果如下:

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


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號