Python rjust()方法
Python rjust()方法
Python rjust() 返回一個(gè)原字符串右對(duì)齊,并使用空格填充至長(zhǎng)度 width 的新字符串。如果指定的長(zhǎng)度小于字符串的長(zhǎng)度則返回原字符串。
語法
rjust()方法語法:
str.rjust(width[, fillchar])
參數(shù)
- width -- 指定填充指定字符后中字符串的總長(zhǎng)度.
- fillchar -- 填充的字符,默認(rèn)為空格。
返回值
返回一個(gè)原字符串右對(duì)齊,并使用空格填充至長(zhǎng)度 width 的新字符串。如果指定的長(zhǎng)度小于字符串的長(zhǎng)度則返回原字符串
實(shí)例
以下實(shí)例展示了rjust()函數(shù)的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.rjust(50, '0');
以上實(shí)例輸出結(jié)果如下:
000000000000000000this is string example....wow/b64/
相關(guān)文章
- Python break 語句
- Python 字符串
- Python 環(huán)境
- Python 數(shù)組
- Python 詞典
- Python3 教程
- Python3 解釋器
- Python3 for while 循環(huán)語句
- Python3 模塊
- Python fabs() 函數(shù)
- Python File fileno() 方法
- Python os.lstat() 方法
- Python os.symlink() 方法
- Python isdecimal()方法
- Python rjust()方法
- Python List min()方法
- Python 字典 Dictionary get()方法
- Python 字典 Dictionary has_key()方法
- Python 字典 Dictionary popitem() 方法
- Python time tzset()方法