我閱讀Mark Pilgrim的深入Python 3,並已在這個現在凝視了大約一個小時:http://getpython3.com/diveintopython3/strings.html#common-string-methodsPython的String類計數()方法
>>> 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.當然,朝聖者甚至在他的筆記中指出它實際上是6,但並不能解釋爲什麼。
有人可以幫我嗎?謝謝!
四個答案?和12總upvotes? (至今)。爲了數f? – alan
我會讓你高興,@alan! –