fork download
  1. mad_string = input().replace("[", "(").replace("{", "(").replace("]", ")").replace("}", ")")
  2. output_list = []
  3.  
  4. while mad_string:
  5. # find last open bracket
  6. last_open = len(mad_string) - mad_string[::-1].index("(")
  7.  
  8. # find first close bracket
  9. first_closed = mad_string.index(")")
  10.  
  11. # add slice (without brackets) to output, remove slice (including brackets)
  12. output_list.append(mad_string[last_open:first_closed])
  13. mad_string = mad_string[:last_open-1] + mad_string[first_closed+1:]
  14.  
  15. # remove spaces between items for consistency
  16. output_list = [x.strip() for x in output_list]
  17.  
  18. # print items adding one space between each
  19. print(" ".join(output_list))
Success #stdin #stdout 0.03s 9440KB
stdin
((your[drink {remember to}]) ovaltine)
stdout
remember to drink your ovaltine