我正在阅读 Mark Pilgrim 的 Dive into Python 3 并且已经盯着这个大约一个小时了: http: //getpython3.com/diveintopython3/strings.html#common-string-methods
>>> s = '''Finished files are the re-
... sult of years of scientif-
... ic study combined with the
... experience of years.'''
>>> s.lower().count('f')
6
在给出的多行字符串示例中,我不明白为什么s.lower().count('f')
返回 6 而不是 3。我已经确认它确实返回 6。当然,Pilgrim 甚至在他的笔记中指出它实际上是 6,但没有解释为什么。
有人可以帮我吗?谢谢!