Unit 2 Pre-Lab Check¶
Unit 2 Learning Targets¶
This is the end of Unit 2! You are free to move onto the Unit 2 Labs, but before you do, please review the learning targets for Unit 2 and make sure you are comfortable with them.
- Learning Target: I can use string formatting to print strings with variables.
- Learning Target: I can use the len() function to find the length of a string.
- Learning Target: I can use string indexing to reference specific letters in a string.
- Learning Target: I can string slicing notation to reference substrings.
- Learning Target: I can use escape sequences to represent special characters in strings.
- Learning Target: I can predict the outcome of boolean expressions.
- Learning Target: I can use boolean operators to compare values.
- Learning Target: I can use if statements to execute code conditionally.
- Learning Target: I can use if/else statements to execute code conditionally.
- Learning Target: I can use if/elif/else statements to execute code conditionally.
- Learning Target: I can predict the outcome of if/elif/else statements based on their order.
- Learning Target: I can create a conditional to check for divisibility.