Unit 5 Pre-Lab Check¶
Unit 5 Learning Targets¶
This is the end of Unit 5! You are free to move onto the Unit 5 Labs, but before you do, please review the learning targets for Unit 5 and make sure you are comfortable with them.
- I can utilize python lists to hold various data.
- I can reference specific elements within a list.
- I can use a for loop to iterate over every element in a list.
- I can use a for-each loop to iterate over every element in a list.
- I can use python documentation to properly use list methods.
- I can understand the value representation of a list.
- I can duplicate a list.
- I can create a python function that will combine two lists.
- I can create a python function that will reverse a list.
- I can create a python function that will replace a given element in a list with another given element.
- I can create a python function that will remove all elements of a given value.
- I can convert a string to a list of characters.
- I can swap two elements within a list.