Introduction
  • Introduction
Module 1: Sequence Index
  • Addressing a string index
  • Sequence
  • Negative Index
  • Access sub-strings
  • Access start of sub-strings
  • Access end of sub-strings
  • Accessing sub-strings stepping backwards
  • Iterate a string: for in statement
  • Iterate sub strings
  • String Methods len()
  • String Methods count()
  • String Methods find()
Sequence Manipulation
  • Creating Lists
  • Accessing Lists by using Index
  • Insert a new value for an index
  • Appending to a list
  • Insert Items into a list
  • Delete a specific list index
  • .pop() gets and deletes item in list
  • Empty list is false
  • Delete a specific object from a list with .remove()
  • .format() function
  • Congratulations