I\'m writing a Python script to process some music data. It\'s supposed to merge two separate databases by comparing their entries and matching them up. It\'s almost working, bu
Converting both to unicode should help:
if unicode(str1) == unicode(str2): print "same"