Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Basics/Exercise/13_read_write_files/exercise_1_poem.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

with open("poem.txt","r") as f:
for line in f:
words=line.split(' ')
words=line.lower()split(' ') #convert all words to lowercase.
for word in words:
word=word.strip(',.!?;:') #remove punctuation.
if word in word_stats:
word_stats[word]+=1
else:
Expand All @@ -18,4 +19,4 @@
print("Words with max occurances are: ")
for word, count in word_stats.items():
if count==max_count:
print(word)
print(word)