Python - output without new line
        Posted  
        
            by Ockonal
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ockonal
        
        
        
        Published on 2010-04-12T16:05:21Z
        Indexed on 
            2010/04/12
            16:13 UTC
        
        
        Read the original article
        Hit count: 401
        
Hello, how can I output text to the console without new line at the end? for example:
print 'temp1'
print 'temp2'
->
temp1
temp2
And I need:
temp1temp2
© Stack Overflow or respective owner