https://github.com/sajaltimilsina/python-cvs-file-analysis
In this repository, I am trying to explore python file processing functions and libraries likes pandas, numpy etc.
https://github.com/sajaltimilsina/python-cvs-file-analysis
Last synced: 8 months ago
JSON representation
In this repository, I am trying to explore python file processing functions and libraries likes pandas, numpy etc.
- Host: GitHub
- URL: https://github.com/sajaltimilsina/python-cvs-file-analysis
- Owner: SajalTimilsina
- Created: 2022-07-21T05:21:08.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-31T02:45:48.000Z (almost 3 years ago)
- Last Synced: 2025-03-29T09:45:15.693Z (about 1 year ago)
- Language: Python
- Size: 843 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python-CVS-File-Analysis
#P1: Count the number of characters.
#P2: Count the number of words (separated by whitespaces, tabs, and newlines characters)
#P3: Count and print the number of unique words (separated by whitespaces, tabs, and newlines characters)
#P4: Count and print the number of lines.
#P5: Find and print the longest word
#P6: Find and print the 10 most common words
#P7: Find and print the 10 least common words.
#P8: Count and print the number of words that begin with each English letter
#P9: List unique words by each English letter.
#P10: Count and print the number of digits.
#All done in step
Instructions to Run the Script:
Ensure you have Python installed on your system.
Place the script and the "The_Bible.txt" file in the same directory.
Run the script, and it will execute all the defined functionalities, printing the results to the console.
Please make sure you have the required file ("The_Bible.txt") with suitable content to get accurate results for each operation.