Perl Primer - University of California, Davis

Once we have string variables, python defines a few operations. If a and b are strings, then a + b represents their concatenation. (Concatenation means sticking the second string onto the end of the first string.) One thing to note is that in Python, Strings (objects) are immutable. This means that once a string object is created, it never changes. ................
................