Concatentation

Strings are stored in the computer memory in a very similar way to arrays.  A string can be thought of as an array of characters, each letter is stored in its own index.  The first character is given the index (0).

Strings can be combined to form new strings.  Many programs involved manipulating strings to produce the formatting that is required.

Python Code Examples