Python ljust()方法
Python ljust()方法
Python ljust() 方法返回一個原字符串左對齊,并使用空格填充至指定長度的新字符串。如果指定的長度小于原字符串的長度則返回原字符串。
語法
ljust()方法語法:
str.ljust(width[, fillchar])
參數
- width -- 指定字符串長度。
- fillchar -- 填充字符,默認為空格。
返回值
返回一個原字符串左對齊,并使用空格填充至指定長度的新字符串。如果指定的長度小于原字符串的長度則返回原字符串。
實例
以下實例展示了ljust()的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.ljust(50, '0');
以上實例輸出結果如下:
this is string example....wow/b64/000000000000000000
相關文章
- Python 循環語句
- Python 日期和時間
- Python 矩陣
- Python 算法分析
- Python 分而治之
- Python 遞歸
- Python3 集合(Set)
- Python3 for while 循環語句
- Python fabs() 函數
- 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()方法