Python 字符串 center() 方法
定义和用法
The center()
方法将使用指定的字符(默认情况下为空格)作为填充字符,将字符串居中对齐。
语法
string.center(length, character)
参数值
参数 | 描述 |
---|---|
length | 必需。返回字符串的长度。 |
character | 可选。用于填充两侧缺少空间的字符。默认值为 " "(空格)。 |
The center()
方法将使用指定的字符(默认情况下为空格)作为填充字符,将字符串居中对齐。
string.center(length, character)
参数 | 描述 |
---|---|
length | 必需。返回字符串的长度。 |
character | 可选。用于填充两侧缺少空间的字符。默认值为 " "(空格)。 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]