fork download
  1.  
  2. results = []
  3. text='''Entry : 12300000
  4. F Blocks: 0x00000020 0x00000000 0x000a1b00
  5. S Blocks: 0x00100000 0x0000001c 0x00000150'''
  6. for line in text.splitlines():
  7. if line.startswith("F Blocks:"):
  8. results = line[line.find(':')+1:].split()
  9.  
  10. print(results)
Success #stdin #stdout 0.02s 9028KB
stdin
Standard input is empty
stdout
['0x00000020', '0x00000000', '0x000a1b00']