fork(1) download
  1. addr_str = "No 123 4th St, 5th Ave NYC\n\tPhone: 0-800-MALL"
  2. idx = addr_str.find("Phone: ")
  3. if idx > -1:
  4. print addr_str[idx+7:]
  5. else:
  6. print addr_str
Success #stdin #stdout 0.01s 7736KB
stdin
Standard input is empty
stdout
0-800-MALL