以下のテキストを理解するために必要なおおよそのグレード (等級レベル) を計算するプログラムを実装します。
$ python readability.py
Text: Congratulations! Today is your day. You're off to Great Places! You're off and away!
Grade 3
仕様
~/pset6/readability/
のreadability.py
というファイルに、まずユーザにテキストの入力を求め、次にColeman-Liauの式に従ってテキストのグレードレベルを出力するプログラムを記述します。問題セット2と同じですが、今回のプログラムはPythonで記述する必要があります。- Coleman-Liau指数は
0.0588 * L - 0.296 * S - 15.8
として計算されます。ここで、L
は100語あたりの平均字数、S
は100語あたりの平均文数です。
- Coleman-Liau指数は
- CS50ライブラリから
get_string
を使用してユーザの入力を取得し、print
を使用して回答を出力します。 - プログラムは、テキスト内の文字、単語、および文の数をカウントする必要があります。文字は、aからzまでの任意の小文字またはAからZまでの任意の大文字であり、スペースで区切られた任意の文字列は単語としてカウントされ、ピリオド、感嘆符、または疑問符が出現すると文の終わりを示します。
- プログラムは、出力
"Grade X"
として出力する必要があります。ここで、XはColeman-Liau式によって計算され、最も近い整数に丸められたグレードです。 - 作成されたインデックス番号が16以上 (大学4年生以上) の場合は
"Grade 16+"
と出力され、正確なインデックス番号は出力されません。インデックス番号が1より小さい場合、プログラムは"Before Grade 1"
を出力します。
使い方
プログラムは次の例のように動作するはずです。
$ python readability.py
Text: Congratulations! Today is your day. You're off to Great Places! You're off and away!
Grade 3
テスト
この問題についてはcheck50
を使用できますが、次の各項目については、最初に自分でコードをテストすることをお勧めします。
- プログラムを
python readability.py
として実行し、入力を求めるプロンプトが表示されるのを待ちます。以下のテキストを入力します。「One fish. Two fish. Red fish. Blue fish.
」 Enterキーを押します。プログラムはBefore Grade 1
を出力するはずです。 - プログラムを
python readability.py
として実行し、入力を求めるプロンプトが表示されるのを待ちます。以下のテキストを入力します。「Would you like them here or there? I would not like them here or there. I would not like them anywhere.」 Enterキーを押します。プログラムはGrade 2
を出力するはずです。 - プログラムを
python readability.py
として実行し、入力を求めるプロンプトが表示されるのを待ちます。以下のテキストを入力します。「Congratulations! Today is your day. You're off to Great Places! You're off and away!
」 と入力します。Enterキーを押します。プログラムはGrade 3
を出力するはずです。
- プログラムを
python readability.py
として実行し、入力を求めるプロンプトが表示されるのを待ちます。以下のテキストを入力します。「Harry Potter was a highly unusual boy in many ways. For one thing, he hated the summer holidays more than any other time of year. For another, he really wanted to do his homework, but was forced to do it in secret, in the dead of the night. And he also happened to be a wizard.
」 Enterキーを押します。プログラムはGrade 5
を出力するはずです。 - プログラムを
python readability.py
として実行し、入力を求めるプロンプトが表示されるのを待ちます。以下のテキストを入力します。「In my younger and more vulnerable years my father gave me some advice that I've been turning over in my mind ever since.」
Enterキーを押します。プログラムはGrade 7
を出力するはずです。 - プログラムを
python readability.py
として実行し、入力を求めるプロンプトが表示されるのを待ちます。以下のテキストを入力します。「Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, "and what is the use of a book," thought Alice "without pictures or conversation?"
」 Enterキーを押します。プログラムはGrade 8
を出力するはずです。
- プログラムを
python readability.py
として実行し、入力を求めるプロンプトが表示されるのを待ちます。以下のテキストを入力します。「When he was nearly thirteen, my brother Jem got his arm badly broken at the elbow. When it healed, and Jem's fears of never being able to play football were assuaged, he was seldom self-conscious about his injury. His left arm was somewhat shorter than his right; when he stood or walked, the back of his hand was at right angles to his body, his thumb parallel to his thigh.
」 Enterキーを押します。プログラムはGrade 8
を出力するはずです。 - プログラムを
python readability.py
として実行し、入力を求めるプロンプトが表示されるのを待ちます。以下のテキストを入力します。「There are more things in Heaven and Earth, Horatio, than are dreamt of in your philosophy.
」 Enterキーを押します。プログラムはGrade 9
を出力するはずです。 - プログラムを
python readability.py
として実行し、入力を求めるプロンプトが表示されるのを待ちます。以下のテキストを入力します。「It was a bright cold day in April, and the clocks were striking thirteen. Winston Smith, his chin nuzzled into his breast in an effort to escape the vile wind, slipped quickly through the glass doors of Victory Mansions, though not quickly enough to prevent a swirl of gritty dust from entering along with him.
」 Enterキーを押します。プログラムはGrade 10
を出力するはずです。 - プログラムを
python readability.py
として実行し、入力を求めるプロンプトが表示されるのを待ちます。以下のテキストを入力します。「A large class of computational problems involve the determination of properties of graphs, digraphs, integers, arrays of integers, finite families of finite sets, boolean formulas and elements of other countable domains.
」 Enterキーを押します。プログラムはGrade 16+
を出力するはずです。
check50
を使用して以下を実行し、コードの正確さを評価してください。ただし、コンパイルとテストは必ず自分で行ってください。
check50 cs50/problems/2021/x/sentimental/readability
以下を実行し、style50
を使用してコードのスタイルを評価します。
style50 readability.py
この問題は、正確さとスタイルの評価に沿ってのみ採点されます。
提出方法
次のコマンドを実行し、GitHubのユーザー名とパスワードを入力してログインします。セキュリティのため、パスワードには実際の文字ではなくアスタリスク (*
) が表示されます。
submit50 cs50/problems/2021/x/sentimental/readability