PushingScores/wordsearch.py

7 lines
204 B
Python
Raw Normal View History

2019-04-16 15:57:55 +02:00
text = open('static/files/17. George Brecht_event scores/17.blurb.txt')
search_words = ['random', 'composer', 'iron', 'car']
for line in text:
if any(word in line for word in search_words):