import re
p = re.compile(r'^\t(.*)\t.*: (.*)$')
test_str = "	Location	Next Available Appointment: Date\n"
print [item for sublist in re.findall(p, test_str) for item in sublist]