fork download
  1. text = "AF_ESP=0.00546;AF_EXAC=0.00165;AF_TGP=0.00619"
  2. print( [x.split('=') for x in text.split(';')] )
  3.  
Success #stdin #stdout 0.02s 9160KB
stdin
Standard input is empty
stdout
[['AF_ESP', '0.00546'], ['AF_EXAC', '0.00165'], ['AF_TGP', '0.00619']]