79235634

Date: 2024-11-29 01:33:19
Score: 2.5
Natty:
Report link

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)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Heora_light