UT.PY2.1.1a |
Understand how to work with Jupyter notebooks. |
|
UT.PY2.1.1b |
Understand an index and how it is used. |
-
2.1 Indexing
-
2.2 Slicing
-
5.1 Project: Guess the Word
|
UT.PY2.1.1c |
Understand how a string is indexed. |
-
2.1 Indexing
-
2.2 Slicing
-
5.1 Project: Guess the Word
|
UT.PY2.1.1d |
Work with string characters by index. |
-
2.1 Indexing
-
2.2 Slicing
-
5.1 Project: Guess the Word
|
UT.PY2.1.2 |
Slice strings into substrings. |
-
2.2 Slicing
-
5.1 Project: Guess the Word
|
UT.PY2.1.3 |
Iterate through string characters. |
-
2.4 Strings and For Loops
|
UT.PY2.1.4 |
Use string methods. |
-
2.6 String Methods
|
UT.PY2.2.1a |
Create lists. |
-
3.2 Lists
-
5.1 Project: Guess the Word
|
UT.PY2.2.1b |
Access items in a list. |
-
3.2 Lists
-
3.3 For Loops and Lists
-
5.1 Project: Guess the Word
|
UT.PY2.2.2 |
Add items to the end of a list. |
-
3.4 List Methods
|
UT.PY2.2.3 |
Modify and insert items into a list. |
-
3.4 List Methods
|
UT.PY2.2.4 |
Delete items from a list by using del, .pop(), and .remove(). |
-
3.4 List Methods
|
UT.PY2.3.1 |
Iterate through Lists using for with in. |
-
3.3 For Loops and Lists
|
UT.PY2.3.2 |
Use for range() in looping operations. |
-
3.3 For Loops and Lists
-
5.1 Project: Guess the Word
|
UT.PY2.3.3 |
Use the list methods .extend(), +, .reverse(), and .sort(). |
-
3.4 List Methods
|
UT.PY2.3.4 |
Convert between lists and strings by using .split() and .join(). |
-
2.6 String Methods
|
UT.PY2.4.1a |
Import files into Jupyter notebooks by using the curl command. |
|
UT.PY2.4.1b |
Open and read local files in memory. |
|
UT.PY2.4.1c |
Use .read() to read a specific number of characters. |
|
UT.PY2.4.2a |
Use .readlines() to read text from files as a list of lines. |
|
UT.PY2.4.2b |
Use .close() to free system resources. |
|
UT.PY2.4.3a |
Use .readline() to read data from a file one line at a time. |
|
UT.PY2.4.3b |
Use .strip() to remove newline characters and other whitespaces. |
|
UT.PY2.4.4a |
Use .seek() to set file read and write locations. |
|
UT.PY2.4.4b |
Use file append mode. |
|