use line.split('\t') to break each result line into its parts, which are:
qseqid, sseqid, percid, alen, mismat, gaps, q_start, q_end, s_start, s_end, evalue, bits
consider breaking the line up and saving the results to a dictionary with:
this_data=dict(zip(field_names, line.split('\t')))