Python ljust() 方法左对齐字符串并用填充字符填充剩余的空格。此方法返回一个左对齐并填充填充字符的新字符串。
签名
ljust(width[, fillchar])
参数
- width: 给定字符串的宽度。
- fillchar:characters 填充字符串中的剩余空间。它是可选的。
返回
它返回一个左对齐的字符串。
让我们看一些 ljust() 方法的例子来理解它的函数。
Python 字符串 ljust() 方法示例 1
# Python ljust() method example
# Variable declaration
str = 'Javatpoint'
# Calling function
str = str.ljust(20)
# Displaying result
print(str)
输出:
J | a | v | a | t | p | o | i | n | t |
Python 字符串 ljust() 方法示例 2
# Python ljust() method example
# Variable declaration
str = 'Javatpoint'
# Calling function
str = str.ljust(15,"$")
# Displaying result
print(str)
输出:
J | a | v | a | t | p | o | i | n | t | $ | $ | $ | $ | $ |
相关用法
- Python String lstrip()用法及代码示例
- Python String lower()用法及代码示例
- Python String Center()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String join()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String upper()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String translate()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
- Python String zfill()用法及代码示例
- Python String isspace()用法及代码示例
- Python String Encode()用法及代码示例
- Python String endswith()用法及代码示例
- Python String index()用法及代码示例
- Python String rindex()用法及代码示例
注:本文由纯净天空筛选整理自 Python String ljust() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。