From f238643cf8b6fc7149a93decf19f125bd7621950 Mon Sep 17 00:00:00 2001 From: madvid Date: Sun, 21 Aug 2022 20:03:12 +0200 Subject: [PATCH] fix (python 00 - ex text analyzer): fixing the number of printable characters --- module00/subject/en.subject.tex | 6 +++--- version | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/module00/subject/en.subject.tex b/module00/subject/en.subject.tex index a4fd8a5e..4afdc225 100644 --- a/module00/subject/en.subject.tex +++ b/module00/subject/en.subject.tex @@ -448,7 +448,7 @@ \subsection*{Examples} >>> text_analyzer("Python 2.0, released 2000, introduced features like List comprehensions and a garbage collection system capable of collecting reference cycles.") -The text contains 143 character(s): +The text contains 143 printable character(s): - 2 upper letter(s) - 113 lower letter(s) - 4 punctuation mark(s) @@ -458,7 +458,7 @@ \subsection*{Examples} Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace.") -The text contains 234 character(s): +The text contains 234 printable character(s): - 5 upper letter(s) - 187 lower letter(s) - 8 punctuation mark(s) @@ -466,7 +466,7 @@ \subsection*{Examples} >>> text_analyzer() What is the text to analyze? >> Hello World! -The text contains 8 character(s): +The text contains 12 printable character(s): - 2 upper letter(s) - 8 lower letter(s) - 1 punctuation mark(s) diff --git a/version b/version index 6c8dc7eb..d95827c3 100644 --- a/version +++ b/version @@ -1 +1 @@ -v3.1.0 +v3.1.2