Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 1.08 KB

File metadata and controls

26 lines (15 loc) · 1.08 KB

PythonUtilities

A collection of Python scripts for common utility tasks including file manipulation, word counting, longest word detection, and grade categorization. Perfect for quick and easy solutions to everyday programming problems.

Contents

  1. color.py
  2. longest_word.py
  3. count_words.py
  4. grade_category.py

color.py

Writes a list of colors to a text file and then reads and prints the content of the file. Useful for basic file I/O operations and handling lists of data.

longest_word.py

Finds and returns the longest word(s) in a given text file. Helpful for analyzing textual data and extracting key information.

count_words.py

Counts the number of words in a given text file. Useful for text analysis and processing tasks where word frequency or document length is important.

grade_category.py

Categorizes grades based on average grade and provides a summary of grades for multiple subjects. Handy for educational applications and grading systems.