String Datatype String is an immutable sequence of characters Literal delimited by ' or " or """ s1 = 'This is a string' s2 = "This is another" s3 = "that's one alright" s4 = """This is a long string that goes across multiple lines. It will have embedded end of lines""" Strings are indexed From the left starting at 0 or... From the right using negative indexes A character is just a string of length 1