diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 23:31:54 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-04 23:31:54 +0000 |
commit | 5121d368936d3d1f2611636e9183c060be7f3bf5 (patch) | |
tree | 6959ea60f79d11287b359cd74a9f513e331db170 /wk6/pset/sentimental-readability/readability.py | |
parent | ab2f5720d8f396e05c87f31544846c8ab07be3fd (diff) |
Sat, May 4, 2024, 4:31 PM -07:00
Diffstat (limited to 'wk6/pset/sentimental-readability/readability.py')
-rw-r--r-- | wk6/pset/sentimental-readability/readability.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wk6/pset/sentimental-readability/readability.py b/wk6/pset/sentimental-readability/readability.py index 299dbeb..2c1fc5b 100644 --- a/wk6/pset/sentimental-readability/readability.py +++ b/wk6/pset/sentimental-readability/readability.py @@ -2,9 +2,9 @@ from cs50 import get_string text = get_string("Text: ") -s = 0.0 # sentences -w = 1.0 # words -l = 0.0 # letters +s = 0.0 # sentences +w = 1.0 # words +l = 0.0 # letters c = '' for i in range(len(text)): |