import re
text = 'Turn left and take the door between stairs and elevator. Turn right to the corridor.'
splitted_sentences = re.split(r'(?<=[.!?]) +', text)
splitted_sentences = [sentence.lower() for sentence in splitted_sentences]
print(splitted_sentences)