fork download
  1. import re
  2. text = '<70 (aze) , <0,03 (+) , >0.03 (+)'
  3. print( " , ".join(re.findall(r'[<>]?\d+(?:[.,]\d+)?', text)) )
  4.  
Success #stdin #stdout 0.02s 9616KB
stdin
Standard input is empty
stdout
<70 , <0,03 , >0.03