Python的center
时间: 2023-11-05 11:04:53 浏览: 136
PyPI 官网下载 | google-cloud-securitycenter-0.1.1.tar.gz
Python中的字符串方法center()可以用来将一个字符串居中对齐,并在两侧填充指定字符。它的语法如下:
```
str.center(width[, fillchar])
```
其中,width表示字符串的总宽度,fillchar表示填充字符,默认为空格。
例如,如果我们有一个字符串"hello",要将它居中对齐,宽度为10,填充字符为"*",则可以这样写:
```
s = "hello"
s = s.center(10, "*")
print(s) # 输出: "**hello**"
```
这样,字符串"hello"就被居中对齐,并在两侧填充了"*"字符。
阅读全文