# Create a list of sentences in the file

# A plain sentence is a string which starts with capital letter
# and ends with a dot, a question mark or an exclamation mark.
# A sentence is either a plain sentence or a sentence enclosed in
# quotation marks.

def extractSentences( fileName ):
    file = open( fileName, "r" )
    text = file.read().splitlines() # list of strings

    # your code here

    file.close()


# ---------------------------------------------------------------------------
#             M A I N
# ---------------------------------------------------------------------------

path =""
fname = "PutYourFileNameHere"
sentences =  extractSentences( fname )

#debug print
print( sentences)

# continue processing the sequences if necessary...


