Please enable JavaScript to use CodeHS

Utah Computer Programming 2

Description

In this lesson, we learn about Functions. Functions let us break our program into different parts that we can organize and reuse however we like. Functions are the main building block of complex Python programs.

Objective

Students will be able to:

  • modularize their programs with functions
Description

In this lesson, we dive deeper into the concept of functions by exploring how to use parameters.

Objective

Students will be able to:

  • Effectively use parameters to customize functions in their programs
Description

In this lesson, we explore where variables exist and what the difference is between a local and global variable.

Objective

Students will be able to:

  • describe the different namespaces with regards to variables and functions
Description

In this lesson, students explore functions with return values and deepen their understanding of and ability to use functions.

Objective

Students will be able to:

  • remove complexity from their programs by abstracting with functions
  • generalize their functions with parameters
  • chain functions together using return values
Description

In this lesson, students explore Python’s way of handling errors with exceptions.

Objective

Students will be able to:

  • create programs that can gracefully handle exceptions
  • continue to function when an error is raised
Description

In this lesson, students review content with a 15 question Unit Quiz.

Objective

Students will be able to:

  • Prove their knowledge of functions and exceptions through a multiple choice quiz
Description

Students will learn how indexing can be used to specify a specific character in a string based on location.

Objective

Students will be able to:

  • use indexing in order to find a specific character in a string
Description

Students will learn how slicing allows them to select multiple string values at once from a given string.

Objective

Students will be able to:

  • use slicing to select a set of values from a string
Description

In Python, strings have the property of “immutability” which means they cannot be mutated or changed. You can assign strings to variables, and reassign new strings to the same variable, but individual characters within a string cannot be reassigned.

Objective

Students will be able to:

  • explain what immutability is and how this applies to strings in Python
Description

In this lesson, students will look at the use of for loops with strings. Since both string indices and for loops index at zero, the len value can be used to go through strings in a for loop. Indicies don’t need to be explicitly used. The syntax for character in my_string can be used to go through a for loop one character at a time.

Objective

Students will be able to:

  • iterate over characters in a string using for loops
Description

In this lesson, students will see how the in keyword can be used in an if statement to see if a particular letter or substring is in a string.

Objective

Students will be able to:

  • use the in keyword to check if a character is in a string
Description

In this lesson, students will learn about string methods. Methods are basically functions that you call on objects and can be used to alter our strings in different ways.

Objective

Students will be able to:

  • use various string methods to alter string values
Description

In this lesson, students review content with a 20 question Unit Quiz.

Objective

Students will be able to:

  • Prove their knowledge of strings through a multiple choice quiz
Description

Students will have an opportunity to apply many of the concepts they’ve learned so far to create a game where the user can compete against the computer to earn the high score.

Objective

Students will be able to:

  • Combine their knowledge of loops, functions, and conditionals to create an interactive game
Description

In this lesson, students will learn about and practice using tuples. A tuple is a heterogenous, immutable data type that stores an ordered sequence of things that can be accessed using indices.

Objective

Students will be able to:

  • create and store information in tuples
  • explain the characteristics of a tuple
Description

In this lesson, students will learn about their second data structure, lists. A list is a mutable, heterogeneous data type that stores an ordered sequence of things.

Objective

Students will be able to:

  • understand and explain the characteristics of a list
  • use lists to store and recall information
Description

In this lesson, students will learn how lists can be iterated over in a similar way to strings.

Objective

Students will be able to:

  • understand and explain the characteristics of a list
  • use for loops to go through items in a list
Description

Methods, in general, are like functions that can be called on objects. Students have seen previously how string methods are called on strings. In this lesson, students will learn about the various list methods that can be called on lists!

Objective

Students will be able to:

  • apply useful list methods to alter and access information about a list
Description

In this lesson, students review content with a 15 question Unit Quiz.

Objective

Students will be able to:

  • Prove their knowledge of basic data structures through a multiple choice quiz
Description

In this lesson, students will learn how 2d lists are stored and how to use indexing and slicing to extract specific items from a list of lists.

Objective

Students will be able to:

  • Use 2d lists to store information in rows and columns
Description

In this lesson, students will learn how to use list comprehensions to alter the items in a list with one line of code.

Objective

Students will be able to:

  • Perform list comprehensions in order to alter all items in a list at once
Description

In this lesson, students will learn how packing and unpacking makes assigning variables to list items very easy and quick.

Objective

Students will be able to:

  • Pack and unpack lists in order to quickly and efficiently assign variables to list items
Description

In this lesson, students will see how dictionaries differ from other data structures and why they are useful.

Objective

Students will be able to:

  • Use dictionaries to structure data
Description

In this lesson, students review content with a 15 question Unit Quiz.

Objective

Students will be able to:

  • Prove their knowledge of data structures through a multiple choice quiz
Description

Students will have an opportunity to apply many of the concepts they’ve learned so far to create a word-guessing game.

Objective

Students will be able to:

  • Combine their knowledge of loops, functions, conditionals, strings, and data structures to create an interactive word-guessing game
Description

This lesson outline focuses on explaining the concepts and importance of file I/O without delving into coding syntax. It provides a foundation for students to understand the fundamentals before diving into the actual coding aspects in subsequent lessons.

Objective

Students will be able to:

  • Define and explain file I/O.
  • Differentiate file types (e.g., text, binary).
  • Identify input sources and output destinations in computing.
  • Understand the purpose and significance of file input.
  • Understand the purpose and significance of file output.
  • Discuss real-world applications of file I/O.
Description

In this lesson, students learn how to read all or a given number of characters from a file using Python.

Objective

Students will be able to

  • Understand the importance of reading files and the role it plays in file handling tasks.
  • Use the open() function to open a file in read mode and the close() method to close the file properly.
  • Read the entire contents of a file using the read() method and store them in a variable
  • Handle common file exceptions, such as FileNotFoundError, when attempting to read a file.
Description

In this lesson, students learn how to use the readline() method to read lines from a file.

Objective

Students will be able to:

  • Understand the purpose and usage of the readline() method in Python for reading lines from a file.
  • Demonstrate how to open a file and use readline() to read a single line at a time.
  • Implement a loop to read and process multiple lines from a file using readline().
  • Handle end-of-file (EOF) situations by checking for an empty string returned by readline().
  • Adapt the readline() method to solve practical problems and perform operations on each line read from a file.
Description

In this lesson, students learn how to use the readlines() method in Python to read multiple lines from a file, and practice performing various operations and manipulations on the line

Objective

Students will be able to:

  • Understand the purpose and usage of the readlines() method in Python.
  • Read and retrieve multiple lines from a file using readlines().
  • Iterate through the lines obtained from readlines() and perform operations on each line.
  • Apply different manipulations and processing techniques to the lines read from a file.
  • Recognize the advantages and use cases of using readlines() in file handling scenarios.
Description

In this lesson, students learn how to write to existing files. They will explore two modes: “w” for overwriting a file and “a” for appending to a file.

Objective

Students will be able to:

  • Understand the purpose and importance of writing to files in programming.
  • Use the “w” mode to overwrite the contents of a file.
  • Use the “a” mode to append new data to the end of a file.
  • Demonstrate the ability to write text and data to a file using appropriate file handling techniques.
Description

In this lesson, students learn how to manipulate the file pointer position using the seek() method in Python. They will explore how seek() can be used to move the pointer to a specific location within a file, enabling reading and writing operations at desired positions.

Objective

Students will be able to:

  • Understand the concept of a file pointer and its role in reading and writing data.
  • Use the seek() method to move the file pointer to a specific position within a file.
  • Perform reading operations at a desired file pointer position.
  • Perform writing operations at a specific location within a file.
  • Identify and handle potential errors or exceptions related to seek() operations.
Description

In this lesson, we will define what classes and objects are and learn how to break code down in this structure. They will learn how to use the init method to give attributes to objects.

Objective

SWBAT define class and object as well as create them inside their programs.

SWBAT create an init method to give attributes to objects.

Description

In this lesson, we will begin defining and calling methods on objects.

Objective

SWBAT create methods inside class definitions and call them on objects.

Description

In this lesson, we will learn how to override the built-in methods repr and eq in order to define how the object will create a string representation of itself and define equivalence for a specific class.

Objective

SWBAT override the repr method to define how the object will create a string representation of itself.
SWBAT override the eq method to define equivalence for this specific class.

Description

In this lesson, students will learn about operator overloading and how mathematical methods can be redefined by overriding their method in the class definition.

Objective

SWBAT override mathematical operators to redefine the way mathematical functions are performed.

Description

In this lesson, students will learn about the difference between class and instance variables and how they are located.

Objective

SWBAT describe the differences between class and instance variables.

Description

In this lesson, students will explore the careers available in computer science and learn how bias can affect computer programs.

Objective

Students will explore different computer science careers and opportunities.
Students will learn how bias can affect computer programs.

Description

In this lesson, students begin their career planning journeys. Students perform a self-assessment, explore a variety of career options, and determine the skills or education needed to obtain careers they want to pursue.

Objective

Students will be able to:

  • Reflect on their unique strengths, skills, passions, and career aspirations
  • Explore an array of career paths through research, articles, and job postings
  • Perform a career gap analysis to identify the differences between their current skill and the required qualifications for careers they wish to pursue