共计 194 个字符,预计需要花费 1 分钟才能阅读完成。
可以使用字符串的 center()
方法来将字符串按照指定宽度居中对齐。示例如下:
s = "hello"
width = 10
centered_string = s.center(width)
print(centered_string)
运行结果为:
hello
在 center()
方法中,传入一个整数参数表示要居中对齐的宽度,该方法会在字符串两侧填充空格,使得字符串居中显示。
丸趣 TV 网 – 提供最优质的资源集合!
正文完