Pythonで関数を定義することによって、単語の数とテキストのスペース数を数える必要があります。私はsplit(" ")
コマンドで試しましたが、テキストが2つの異なる行にあるため、私はそれを行う方法がわかりません。誰かが私を助けることができますか?複数の行のテキストで単語とスペースを数えてください
text1 = "A sentence is a group of words that makes complete sense, \n contains a main verb, and begins with a capital letter."
https://docs.python.org/2/library/stdtypes.html#str.split – Bahrom
@ChristianDean例には改行がありません... – alfasin
@ChristianDean '' 1 \ n3 2'.split() 'は' ['1'、 '3'、 '2'] 'となります。私はここに何かを逃していますか – Bahrom