Two strings can be joined using the + operator:
print "Only way to join" + "two strings"
The following is the output of the preceding code:
C:pydev>python string_concatenation.pyOnly way to join two strings