>>> s1='\x45'<br>>>> s2='\xe4'<br>>>> s1+s2<br>'E\xe4'<br>>>> print  s1+s2<br>E<br><br>why  s1+s2  not  =  '\x45\xe4'??<br><br>