diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 23:02:04 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 23:02:04 +0000 |
commit | 1e87f1deabec697330bd590c39ad85b65d188e74 (patch) | |
tree | 77dbd80f967db81bf2c9ec187f6b72993bcda380 | |
parent | 62dbd2dab1281e93d2f4d3929bd7e347cc44cbc5 (diff) |
Sat, May 4, 2024, 4:02 PM -07:00
-rw-r--r-- | wk6/pset/sentimental-readability/readability.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/wk6/pset/sentimental-readability/readability.py b/wk6/pset/sentimental-readability/readability.py index 5aeb65a..69a8c36 100644 --- a/wk6/pset/sentimental-readability/readability.py +++ b/wk6/pset/sentimental-readability/readability.py @@ -2,3 +2,9 @@ from cs50 import get_string text = get_string("Text: ") +s = 0.0 # track how many sentences there are +w = 1.0 # track how many words there are +l = 0.0 # letters +i = 0 +c = '' + |