Basic Math
This is how you convert a string into a list of characters.
What is list(string)?
When accessing the last element of a list or tuple, you can use this index value.
What is -1?
This operation creates a slice of a list.
What is list slicing with [:]?
This syntax returns elements from index 2 to 5 in a list.
What is list_name[2:6]?