From 1e87f1deabec697330bd590c39ad85b65d188e74 Mon Sep 17 00:00:00 2001 From: Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> Date: Sat, 4 May 2024 23:02:04 +0000 Subject: Sat, May 4, 2024, 4:02 PM -07:00 --- wk6/pset/sentimental-readability/readability.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'wk6/pset/sentimental-readability/readability.py') 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 = '' + -- cgit v1.2.3