各种内置方法
center的用法。a = 'xiaojiayu'
a.center(20)
得出的答案会居中,但是填充的字符,数字怎么自定义啊,请举个列子讲解。 百度一下就有了,https://www.runoob.com/python/att-string-center.html
>>> a = 'hello'
>>> a.center(20)
' hello '
>>> a.center(19, '-')
'-------hello-------'
>>> a.center(3)
'hello'
>>> a.center(8, '-')
'-hello--'
>>> b='runoob'
>>> b.center(9, '-')
'--runoob-'
>>> 疾风怪盗 发表于 2020-9-18 16:16
百度一下就有了,https://www.runoob.com/python/att-string-center.html
感谢,这么简单,我应该想到的{:10_257:} 18798332503 发表于 2020-9-18 17:06
感谢,这么简单,我应该想到的
满意就设个最佳吧。。。。。{:10_312:}
页:
[1]