Loading ...
SeekhoCoding
SELECT PROJECT
PROJECT GOAL (เค•เฅเคฏเคพ เคฌเคจเคพเคจเคพ เคนเฅˆ)
Create a Simple Word Counter Program in Python that takes a list of text strings to analyze their word patterns dynamically.
Requirements
1. Inside the Program, use standard string methods to clean and split the text sentences correctly.
2. The Program will accept a list (text_list) containing multiple text strings or paragraphs to evaluate.
3. Run a for loop to process each text string and track the word counts systematically.
4. Validation Logic :

1. Use the split() method to break strings into individual words automatically by removing whitespaces.
2. Check and handle empty strings safely by setting their total word count value to zero.
3. Calculate total sentences by tracking punctuation marks like periods, exclamation points, and question marks.

5. Print the processed text summary directly on the screen along with its total word and sentence count.
CHECKLIST


OUTPUT
โ–ถ Pyodide Console v0.26.0 Ready...
โ–ถ Click the 'Run' button above to execute your Python code.
โ–ถ Your program output or errors will appear here.