jcpython2 发表于 2022-5-26 10:08:18

.center .lstrip互套 有没有更高效写法?


str = 'abc'
temp = '    abc'
temp2 = temp.center(10)
print(temp2.lstrip())

想把字符串居中后再删除左面空格输出,有没有更高效方法? 试了下 print(temp2.lstrip(str.center(10)))无效

wp231957 发表于 2022-5-26 11:14:52

没啥问题啊
>>> str="abc"
>>> str                  
'abc'
>>> str.center(30).lstrip()
'abc            '
>>>
页: [1]
查看完整版本: .center .lstrip互套 有没有更高效写法?