From 75a42ec54dbf721caa659ddf02c1f46fc2cb4bef Mon Sep 17 00:00:00 2001 From: mlot Date: Fri, 6 Jun 2025 13:40:57 -0400 Subject: initial commit for archiving --- misc/characterCount.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 misc/characterCount.py (limited to 'misc/characterCount.py') diff --git a/misc/characterCount.py b/misc/characterCount.py new file mode 100644 index 0000000..de3b2ef --- /dev/null +++ b/misc/characterCount.py @@ -0,0 +1,15 @@ +#!Python + +#Character count + +import pprint + +message = 'It was a bright cold day in April, and the clocks were strinking thirteen.' +count = {} + +for character in message: + count.setdefault(character, 0) + count[character] = count[character] + 1 + +pprint.pprint(count) +print(pprint.pformat(count)) -- cgit