64

我知道我可以用这个来计算字符串中的前导空格:

>>> a = "   foo bar baz qua   \n"
>>> print "Leading spaces", len(a) - len(a.lstrip())
Leading spaces 3
>>>

但是有没有更蟒蛇的方式?

4

7 回答 7

96

你的方式是pythonic但不正确,它也会计算其他空白字符,只计算空格是显式的a.lstrip(' ')

a = "   \r\t\n\tfoo bar baz qua   \n"
print "Leading spaces", len(a) - len(a.lstrip())
>>> Leading spaces 7
print "Leading spaces", len(a) - len(a.lstrip(' '))
>>> Leading spaces 3
于 2012-11-30T16:21:13.227 回答
24

你可以使用itertools.takewhile

sum( 1 for _ in itertools.takewhile(str.isspace,a) )

并证明它给出的结果与您的代码相同:

>>> import itertools
>>> a = "    leading spaces"
>>> print sum( 1 for _ in itertools.takewhile(str.isspace,a) )
4
>>> print "Leading spaces", len(a) - len(a.lstrip())
Leading spaces 4

我不确定这段代码是否真的比你原来的解决方案更好。它的优点是它不会创建更多的临时字符串,但这非常小(除非字符串真的很大)。我没有发现任何一个版本都可以立即清楚地了解那行代码,所以如果您打算多次使用它(在任何一种情况下都带有适当的注释),我肯定会将它包装在一个命名良好的函数中。

于 2012-11-30T16:16:29.567 回答
13

只是为了多样化,理论上你可以使用正则表达式。它有点短,而且看起来比对 . 的双重调用更好len()

>>> import re
>>> a = "   foo bar baz qua   \n"
>>> re.search('\S', a).start() # index of the first non-whitespace char
3

或者:

>>> re.search('[^ ]', a).start() # index of the first non-space char
3

但我不推荐这个;根据我所做的快速测试,它的效率远低于len(a)-len(lstrip(a)).

于 2012-11-30T16:26:25.563 回答
4

使用nextenumerate

next((i for i, c in enumerate(a) if c != ' '), len(a))

对于任何空格:

next((i for i, c in enumerate(a) if not c.isspace()), len(a))
于 2012-11-30T16:26:22.100 回答
3

我最近有一项类似的计算缩进的任务,因此我想将制表符计为四个空格:

def indent(string: str):
    return sum(4 if char is '\t' else 1 for char in string[:-len(string.lstrip())])
于 2019-10-12T23:01:50.890 回答
2

这看起来……对我来说很棒。通常我会回答“是 X Pythonic 吗?” 有一些功能魔法的问题,但我觉得这种方法不适合字符串操作。

如果有一个只返回前导空格的内置函数,并且采取len()那个,我会说去吧 - 但 AFAIK 没有,re而且其他解决方案绝对是矫枉过正。

于 2012-11-30T16:13:29.013 回答
1

您可以使用正则表达式:

def count_leading_space(s): 
    match = re.search(r"^\s*", s) 
    return 0 if not match else match.end()

In [17]: count_leading_space("    asd fjk gl")                                  
Out[17]: 4

In [18]: count_leading_space(" asd fjk gl")                                     
Out[18]: 1

In [19]: count_leading_space("asd fjk gl")                                      
Out[19]: 0

于 2021-05-19T08:48:42.033 回答