fork download
  1. import re
  2. rx = r".*\b([a-z]{2,})"
  3. s = "this is very cool"
  4. m = re.search(rx, s)
  5. if m:
  6. print(m.group(1))
Success #stdin #stdout 0s 23336KB
stdin
Standard input is empty
stdout
cool