.center .lstrip互套 有没有更高效写法?
str = 'abc'
temp = ' abc'
temp2 = temp.center(10)
print(temp2.lstrip())
想把字符串居中后再删除左面空格输出,有没有更高效方法? 试了下 print(temp2.lstrip(str.center(10)))无效 没啥问题啊
>>> str="abc"
>>> str
'abc'
>>> str.center(30).lstrip()
'abc '
>>>
页:
[1]