Python center() 方法通过填充字符串左右两侧的填充将字符串对齐到中心。此方法有两个参数,第一个是宽度,第二个是可选的 fillchar。 fillchar 是一个字符,用于填充字符串的左右填充。
签名
center(width[,fillchar])
参数
- width(必填)
- fillchar(可选)
返回类型
它返回修改后的字符串。
Python String Center() 方法示例1:默认填充字符
在这里,我们没有传递第二个参数。默认情况下,它需要空格。
# Python center() function example
# Variable declaration
str = "Hello Javatpoint"
# Calling function
str2 = str.center(20)
# Displaying result
print("Old value:", str)
print("New value:", str2)
输出:
Old value:Hello Javatpoint New value: Hello Javatpoint
Python 字符串 Center() 方法示例 2
在这里,我们将填充字符(可选)参数提供为 #。请参阅示例。
# Python center() function example
# Variable declaration
str = "Hello Javatpoint"
# Calling function
str2 = str.center(20,'#')
# Displaying result
print("Old value:", str)
print("New value:", str2)
输出:
Old value:Hello Javatpoint New value:##Hello Javatpoint##
Python 字符串 Center() 方法示例 3
# Python center() function example
# Variable declaration
str = "Hello Javatpoint"
if str == "Hell0 Javatpoint":
str2 = str.center(20,'#')
else:
str2 = str.center(20,'!')
# Displaying result
print("Old value:", str)
print("New value:", str2)
输出:
Old value:Hello Javatpoint New value:!!Hello Javatpoint!!
相关用法
- Python String Count()用法及代码示例
- Python String Casefold()用法及代码示例
- 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 swapcase()用法及代码示例
注:本文由纯净天空筛选整理自 Python String Center() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。