fork download
  1. import re
  2. text = "Séance1 : 9.25/20"
  3. m = re.search(r':\s*(\d[\d.]*)/', text)
  4. if m:
  5. print ( m.group(1) )
Success #stdin #stdout 0.02s 9524KB
stdin
Standard input is empty
stdout
9.25