1. Strings are declared with quotations; for example: s = "string"
2. Strings are immutable.
3. Strings may be concatenated or multiplied using the addition and multiplication operators, respectively.
4. String characters may be accessed by index; for example: s[1]
5. A specific range of a string may be accessed using the slice method; for example: s[1:3]