3 September 2020

Housekeeping Check Canvas to make sure you have not items needing attention. Here is what is out there.

What's up Doc?

picture of Bugs Bunny

Python built-in Types has information on all of the types we have seen so far and more. Here you can learn about these things and more.

Find on page is really handy when navigating this (rather long) page.

Python built-in Functions has information on all of the standard functions built into Python. Click on the links as the top of the page and be warped right to that function.

Python String Manipulation

Indices

s = "abcdef";

  -------------------------
  | a | b | c | d | e | f |
  0---1---2---3---4---5---6

Indices point at the character just to their right.

Immutiblity

String Methods and the Python Docs