A value with a string data type is simply a collection of characters. You've already seen astringdata type in use from the hello world program that you created earlier, namely,Hello World!. String values are created in Python by writing the contents of a string inside quotation marks:
>> "your string here"
Two or more strings can be merged together or concatenated using the+operator:
>> "string 1 " + "string 2"
Python does not distinguish between single quotes and double quotes; however, the opening quotes must be the same as the closing quotes ( "This will not work').
I will cover string operations in detail in Chapter 5, Manipulating Text Data - An Introduction to Regular Expressions.