Skip to content

Instantly share code, notes, and snippets.

@glauesppen
Created November 24, 2017 23:04
Show Gist options
  • Save glauesppen/32eff090b8353a7fdf93b0679643b2bc to your computer and use it in GitHub Desktop.
Save glauesppen/32eff090b8353a7fdf93b0679643b2bc to your computer and use it in GitHub Desktop.
Function search in a text file for a keyword and return the sentences it belongs.
def search_text(text, keyword):
with open(text,'r') as t:
for period in t:
for sentence in period.split('.'):
if keyword in sentence:
print sentence
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment