admin管理员组文章数量:1344975
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
|
1 Answer
Reset to default 1You 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.
本文标签:
版权声明:本文标题:python - Counting number of words, characters, and lines of a given .txt file using PyCharm - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743752432a2532897.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
wc
in console:wc lyrics.txt
– furas Commented 11 hours ago