xor on strings

dsavitsk dsavitsk at e-coli.net
Sun Feb 10 22:50:08 EST 2002


maybe this isn't xor, but i would like something that will smush strings ...
that is, something that would compare two strings position by position and
return the higher (or lower i suppose) value piece in each position, i.e.

>>> fun('00', 'AA')
'AA'

>>> fun('00', 'A')
'A0'

>>> fun('00', '')
'00'

i understand that this is easy to write, but i was looking for a builtin.
does it exist?

-d






More information about the Python-list mailing list