Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One string with RegEx v.2 solution in Clear category for Three Words by RomanTT
import re
def checkio(words: str) -> bool:
return not re.search(r'[A-Za-z]+\s[A-Za-z]+\s[A-Za-z]+',words)==None
Oct. 27, 2018