:指定した複数行の文字列の例では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')
が3の代わりに6を返すのか分かりません。私はそれが6を返すことを確認しました。もちろん、Pilgrimは彼のメモで、実際には6であると指摘しますが、理由は説明しません。
誰かが私を助けることができますか?ありがとう!
4つの答え?そして、合計12アップアップ? (これまでのところ)。 fを数えるには? – alan
私はあなたにアップします、@アラーン! –