最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Counting number of words, characters, and lines of a given .txt file using PyCharm - Stack Overflow

programmeradmin3浏览0评论

I am currently struggling to find the number of words, characters, and lines of a song in a lyrics.txt file. I was able to find number of words and lines only, but the two code blocks I have for finding this out, doesn't work.

Here's my current code so far:

count = 0
infile = open('lyrics.txt')

for line in infile:
    count = count + 1
print("The song has about", count, "lines in total.")

data = infile.read()
wordCount = len(data)
print("Love Me Harder has approximately", wordCount, "total words in the song.")

I am currently struggling to find the number of words, characters, and lines of a song in a lyrics.txt file. I was able to find number of words and lines only, but the two code blocks I have for finding this out, doesn't work.

Here's my current code so far:

count = 0
infile = open('lyrics.txt')

for line in infile:
    count = count + 1
print("The song has about", count, "lines in total.")

data = infile.read()
wordCount = len(data)
print("Love Me Harder has approximately", wordCount, "total words in the song.")
Share Improve this question asked 12 hours ago UnusualAce77UnusualAce77 617 bronze badges New contributor UnusualAce77 is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 2
  • This question is similar to: Counting lines, words, and characters within a text file using Python. If you believe it’s different, please edit the question, make it clear how it’s different and/or how the answers on that question are not helpful for your problem. – JonSG Commented 12 hours ago
  • on Linux I would use program wc in console: wc lyrics.txt – furas Commented 11 hours ago
Add a comment  | 

1 Answer 1

Reset to default 1

You can only "read" a file once. You are at the end of the file when you do `infile.read()`, so nothing is read.

You either have to re-open the file or call `infile.seek(0)` to force it back to the beginning of the file.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论