Notes

  • Variables represent a value
  • Mathematical expressions can be performed on the variable
  • You can define a variable using var and then the variable=the value
  • You can assign 2 objects to one variable
  • Use .append to add objects to the list
  • You break down list into other list
  • You can organize items in the lists using for loops
  • The split() method splits a string into a list. You can specify the separator, default separator is any whitespace.
  • The join() method takes all items in an iterable and joins them into one string. A string must be specified as the separator.