row_names=['a','b','b','b']
col_names=['a','a','a','b','b','b']
How do I only print items that do not match in both? Zip doesnt work due to unequal lengths.
Something along this line?
for item in row_names, col_names:
if row_names[item] != col_names[item]:
print item