Python ljust()方法
Python ljust()方法
Python ljust() 方法返回一個(gè)原字符串左對(duì)齊,并使用空格填充至指定長(zhǎng)度的新字符串。如果指定的長(zhǎng)度小于原字符串的長(zhǎng)度則返回原字符串。
語(yǔ)法
ljust()方法語(yǔ)法:
str.ljust(width[, fillchar])
參數(shù)
- width -- 指定字符串長(zhǎng)度。
- fillchar -- 填充字符,默認(rèn)為空格。
返回值
返回一個(gè)原字符串左對(duì)齊,并使用空格填充至指定長(zhǎng)度的新字符串。如果指定的長(zhǎng)度小于原字符串的長(zhǎng)度則返回原字符串。
實(shí)例
以下實(shí)例展示了ljust()的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.ljust(50, '0');
以上實(shí)例輸出結(jié)果如下:
this is string example....wow/b64/000000000000000000
相關(guān)文章
- Python 循環(huán)語(yǔ)句
- Python 日期和時(shí)間
- Python 矩陣
- Python 算法分析
- Python 分而治之
- Python 遞歸
- Python3 集合(Set)
- Python3 for while 循環(huán)語(yǔ)句
- Python fabs() 函數(shù)
- Python File tell() 方法
- Python File truncate() 方法
- Python os.lchflags() 方法
- Python os.major() 方法
- Python os.pipe() 方法
- Python os.renames() 方法
- Python isalnum()方法
- Python List index()方法
- Python 字典 Dictionary type()方法
- Python time altzone()方法
- Python time mktime()方法