diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 23:06:21 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 23:06:21 +0000 |
commit | 081d4593767099738572cf84904100b155203d5d (patch) | |
tree | 3f67020a94a74a5ee13b2b7324d27877acaed4e5 | |
parent | b33b562061be70dd41e53f7f3934265c17481bf7 (diff) |
Sat, May 4, 2024, 4:06 PM -07:00
-rw-r--r-- | wk6/pset/sentimental-readability/readability.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wk6/pset/sentimental-readability/readability.py b/wk6/pset/sentimental-readability/readability.py index d8b79fd..f2c8603 100644 --- a/wk6/pset/sentimental-readability/readability.py +++ b/wk6/pset/sentimental-readability/readability.py @@ -2,8 +2,8 @@ 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 +s = 0.0 # sentences +w = 1.0 # words l = 0.0 # letters c = '' |