with open("sowpods.txt") as f:
for _ in range(6): # skip first 6 lines
f.readline()= 0
counter for line in f:
if len(line.strip()) > 0: # line 17563 is empty
+= 1
counter
print(f"There are {counter} words in the Scrabble list.")
There are 267752 words in the Scrabble list.