1 Matching Annotations
  1. Sep 2020
      1. Strings are not like integers, floats, and booleans.
      2. A string is asequence, which means it isan ordered collection of other values.
      3. A string is a sequence of characters.
      4. len is a built-in function that returns the number of characters in a string.
      5. A segment of a string is called aslice.
      6. Strings provide methods that perform a variety of useful operations.
      7. A method is similarto a function—it takes arguments and returns a value—but the syntax is different.