Please enable JavaScript to use CodeHS

Standards Mapping

for Utah Python 2

24

Standards in this Framework

24

Standards Mapped

100%

Mapped to Course

Standard Lessons
PY2.1.1a
Students will identify when to use a list
  1. 2.1 Creating Lists
PY2.1.1b
Student will create a list with strings and numeric values
  1. 2.1 Creating Lists
PY2.1.1c
Access a particular element in a list by using an index
  1. 2.2 Accessing List Elements
PY2.1.2a
Students will use the list methods to manipulate their lists: .append(), .pop(), and .insert()
  1. 2.4 Adding List Elements
  2. 2.5 Removing List Elements
PY2.1.2b
Students will use the list methods to manipulate their lists: .extend(), +, .reverse(), and .sort()
  1. 2.6 Additional List Methods
PY2.1.2c
Students will use the list methods to manipulate their lists: .join(), split(
  1. 5.3 Strings & Lists
PY2.1.3a
Students will use a for loop with "in"
  1. 3.3 Looping Over a List by Item
  2. 5.5 Looping Over Characters in a String
PY2.1.3b
Students will use a for loop with range()
  1. 3.2 Looping Over a List by Index
  2. 5.5 Looping Over Characters in a String
PY2.2.1
Students will understand an index
  1. 2.2 Accessing List Elements
  2. 5.1 String Characters
PY2.2.2a
Understand how a string is indexed
  1. 5.1 String Characters
  2. 5.2 Substrings
PY2.2.2b
Work with string characters by index
  1. 5.1 String Characters
  2. 5.2 Substrings
  3. 5.5 Looping Over Characters in a String
PY2.2.3a
Students will slice a string into substrings
  1. 5.2 Substrings
PY2.2.3b
Students will slice a list into sub lists
  1. 5.3 Strings & Lists
PY2.3.1a
Students will be able to import files into Jupyter notebooks by using the curl command.
  1. 10.5 Sharing Python Knowledge with Jupyter Notebooks
PY2.3.1b
Students will be able to read a local file in memory.
  1. 7.2 Reading Characters from File
  2. 7.3 Reading Line from File
  3. 7.4 Reading All Lines from File
PY2.3.1c
Students will be able to use .read to read a specific number of characters.
  1. 7.2 Reading Characters from File
PY2.3.2a
Students will be able to use .readlines to read text from files as a list of lines.
  1. 7.4 Reading All Lines from File
PY2.3.2b
Students will be able to use .close() to free svstem resources.
  1. 7.2 Reading Characters from File
PY2.3.3a
Students will be able to use .readline() to read data from a file one line at a time.
  1. 7.3 Reading Line from File
PY2.3.3b
Students will be able to use .strip() to remove newline characters and other whitespaces.
  1. 5.4 Additional String Methods
  2. 7.3 Reading Line from File
  3. 7.4 Reading All Lines from File
PY2.3.4a
Students will be able to use .seek() to set file read and write locations.
  1. 8.2 Move File Pointer Position
PY2.3.4b
Students will be able to use file append mode.
  1. 8.1 Write to End of File
PY2.3.5a
Students will be able to use .write() to write to a file
  1. 8.1 Write to End of File
PY2.3.5b
Students will be able to use file append mode to append to a file
  1. 8.1 Write to End of File