Please enable JavaScript to use CodeHS

Utah Introduction to Python 1 and 2

Lesson 14.7 Strings Quiz

Description

In this lesson, students review content with a 10 question End-of-Unit Quiz.


Objective

Students will be able to:

  • Prove their knowledge of the following commands and concepts through a multiple choice quiz:
    • Indexing strings (string_var[index])
    • Slicing strings (string_var[index:index], string_var[index:], string_var[:index], string_var[:])
    • Splitting a string into a list of letters (list(string_var))
    • Splitting a string into a list of words (string_var.split() or string_var.split(element))
    • Combining a list into a string (element.join(list_var))
    • Looping over a list
    • Using additional string methods:
      • strip
      • replace
      • find
      • count

Activities

These are all the activities included in the lesson

14.7.1 Strings Quiz