Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix (python 00 - ex text analyzer): fixing the number of printable ch… #249

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions module00/subject/en.subject.tex
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -458,15 +458,15 @@ \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)
- 30 space(s)
>>> 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)
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.1.0
v3.1.2