import re
p = re.compile(r'(?m)^\t(.*)\t.*: (.*)$')
test_str = "	Location	Next Available Appointment: Date\n	Location1	Next Available Appointment: Date1\n"
print [(x.group(1), x.group(2)) for x in re.finditer(p, test_str)]