String Slicing
Indicate multiple consecutive characters that are created as a new substring from the string object
Updating the string doesn’t update the slice
Separator
Character(s) that indicate where to split string into tokens
List
Container that groups related objects together in sequence from left-to-right
Mutable
List Nesting
List as an element of another list
Allows for a multidimensional data structure
Slice Notation
Range of elements, numbers separated by colon
my_list[0:2] - includes from beginning index to 1 less ending index
List Comprehension
Modify every element in the list the same way and returns a new list
new_list = [(i+5)] for i in my list]