Please enable JavaScript to use CodeHS

Utah Introduction to Python 1 and 2

Description

In this lesson, students are introduced to coding with turtle graphics. Students will begin to recognize programs as sequences and groups of commands. Students will learn a few basic commands and then apply them right away by writing their first program.

Objective

Students will be able to:

  • Define programming/coding
  • Use basic Tracy commands
  • Write their first program
Description

In this lesson, students learn about some of the different types of programming languages and categories they may fall into (low vs high level languages, compiled vs interpreted languages). They also look at a timeline of programming languages and explore why one language would be used over another.

Objective

Students will be able to:

  • Describe the difference between low-level and high-level programming languages and give examples of both
  • Describe the difference between compiled and interpreted programming languages and give examples of both
  • Explore a timeline of programming languages
Description

In this lesson, students will be introduced to the layout of Tracy’s grid world and will learn how to use coordinate pairs to locate Tracy on the coordinate plane. They will add to the list of commands they know and can use to create Tracy graphics.

Objective

Students will be able to:

  • Locate Tracy on the coordinate plane
  • Use the penup(), pendown(), backward(), goto(), setposition(), setx(), and sety() commands in their programs
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:
    • compiled vs interpreted languages
    • high level vs low level languages
    • forward
    • circle
    • backward
    • penup / pendown
    • setposition
    • goto
    • setx / sety
Description

In this short lesson, students will be introduced to the idea of checking their own programs. They will gain insight on how autograders should be used and what other ways they can be sure they have successfully completed a program before moving on.

Objective

Students will be able to:

  • utilize different methods of checking their programs
  • understand the limitations of autograders
Description

In this lesson, students will learn how to use the left, right, and setheading/seth commands in order to move Tracy to more locations on the canvas. They will now have many commands that can be used to have Tracy create more complex graphics.

Objective

Students will be able to:

  • Use the left and right commands in order to turn Tracy from her current direction
  • Use the setheading/seth commands to turn Tracy to face a specific direction
Description

In this lesson, students are introduced to for loops. They learn how for loops simplify the process of making small changes to a program and help avoid repeating code. For loops are written like this:

for i in range (4):
    // Code to be repeated 4 times
Objective

Students will be able to:

  • Create for loops to repeat code a fixed number of times
  • Explain when a for loop would be a useful tool
  • Utilize for loops to write programs that would be difficult/impossible without loops
  • Use the bgcolor command to change the color of Tracy’s canvas
Description

In this lesson, students are introduced to the ability to turn Tracy at any angle. With this feature, Tracy can now draw diagonal lines which opens up the possibility to draw multiple shapes that weren’t previously available.

Objective

Students will be able to:

  • Use angles inside turning commands
  • Turn Tracy at angles in conjunction with for loops
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:
    • for loops
    • left / right
    • setheading / seth
    • speed
    • bgcolor
Description

In this lesson, students learn how to use comments to describe their programs. Comments are helpful because they allow programmers to leave notes about the programs they are writing. Students will also learn about the different types of comments that can be used and the benefits of using them.

Objective

Students will be able to:

  • Use comments throughout their program
  • Describe why comments are helpful for both themselves and anyone else looking at their code
Description

In this short lesson, students will be introduced to the rules for naming elements in their code. Variables and functions that are used inside their programs will be named by students, so the following guidelines should be obeyed to be sure that the programs written are readable and successful.

Objective

Students will be able to:

  • Name elements of their code by following specific guidelines and rules in order to create readable and working programs
Description

In this lesson, students are introduced to functions. They start with the basics of defining a function and why we need them and will revisit a program they coded earlier in the unit to rewrite it using functions.

Objective

Students will be able to:

  • Define a function
  • Call a function
  • Explain why functions are used
Description

In this lesson, students are able to add some flair to their turtle graphics programs by controlling color, pensize, and fill. These new commands are added to the list of commands that have been already practiced in order to allow for more creativity in student programs.

Objective

Students will be able to:

  • Use the extended circle() command to draw different shapes
  • Use the color(), pensize(), begin_fill(), and end_fill() commands to add more creativity to their programs
Description

In this lesson, students will learn how to use the write function to add text labels to their programs.

Objective

Students will be able to:

  • Use the write command to add text to the canvas
  • Use additional attributes with the write command to change the font style and location of the text label created
Description

In this lesson, students are introduced to the concept of Top Down Design. Top Down Design is the process of breaking down a program into functions or smaller parts to avoid repeated code and to make our programs more readable.

Objective

Students will be able to:

  • Break a large problem down into smaller pieces
  • Write functions to solve each smaller problem
  • Solve a complicated problem using Top Down Design
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:
    • single and multi-line commenting
    • naming rules
    • defining and calling functions
    • top down design
    • color
    • pensize
    • begin_fill / end_fill
    • circle with extended parameters
    • write
Description

Students will get a chance to get creative with Tracy commands and concepts in this lesson. They will apply all they’ve learned to create a mural design.

Objective

Students will be able to:

  • Come up with a creative mural design of their own
  • Use Tracy commands and concepts to recreate an image
Description

In this lesson, students will learn about a fundamental aspect of every programming language: Variables. A variable is something that stores information in a program that can be used later.

Objective

Students will be able to:

  • Describe what variables are
  • Discuss why variables are used in our programs
Description

In this lesson, students learn about 4 different data types and what kind of information they hold. They also learn how to use the type function to determine the data type of a value and use casting to switch values between different data types.

Objective

Students will be able to:

  • Categorize values into different data types (string, integer, floating point number, and boolean)
  • Use the type function to check the type of any value
  • Use str, int, and float to cast values to different data types
Description

In this lesson, students will dive deeper into the Strings data type, learning how to concatenate strings and use escape sequences.

Objective

Students will be able to:

  • concatenate strings together to form more complex messages
  • use escape sequences to:
    • split commands onto multiple lines
    • print quotation marks inside strings
    • add new lines to strings
Description

In this lesson, students will learn how to call methods on values and use three different string methods (upper, lower, and capitalize) to alter text.

Objective

Students will be able to:

  • Call methods on values
  • Use the following string methods to alter text
    • upper
    • lower
    • capitalize
Description

In this lesson, students will learn how to incorporate user input into their programs. Students will learn how to request user input as both strings and integers, store the input in a variable, and how format can be used to create messages.

Objective

Students will be able to:

  • Incorporate user input into their code in order to customize their programs
  • Use format to edit string messages
Description

In this lesson, students will dive deeper into the concept of functions by exploring how to use parameters to customize their code.

Objective

Students will be able to:

  • Incorporate parameters into their functions in order to adapt their functions to multiple situations
Description

In this lesson, students will dive into common errors they may run into while developing Tracy programs and learn some techniques for debugging their programs.

Objective

Students will be able to:

  • Debug common errors in code
Description

In this lesson, students will learn how to allow the user to interact with their programs using their mouse. They will learn how to allow interaction when the user clicks on Tracy or anywhere on the canvas as well as how to effectively use variables inside clickable programs.

Objective

Students will be able to:

  • use the onclick function inside their programs
  • use the getscreen function to allow the user to click anywhere on the canvas to trigger an event
  • use and manipulate variables inside programs that use the onclick function
Description

In this lesson, students will expand their knowledge of for loops. They are aware that for loops execute the same lines of code a given number of times but, in this lesson, will learn that i is actually a variable that can be used to control commands inside the loop as it is running.

Objective

Students will be able to:

  • Use i as a variable inside their for loop to control different commands
Description

In this lesson, students will learn the extended parameters that can be used to control the value of i in for loops. They will then be able to use the variable i to control much more of their code by setting specific values.

Objective

Students will be able to:

  • Control the value of i using extended parameters
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:
    • assigning and using variables
    • Data types (string, integer, floating point number, boolean)
    • type
    • print
    • int / str / float
    • Concatenation
    • Escape sequences
    • String methods
      • capitalize
      • upper
      • lower
    • input
    • clickable interaction using onclick
Description

Students will get a chance to get creative with Tracy commands and concepts in this lesson. They will apply all they’ve learned to create a depiction of a common cycle of their choosing.

Objective

Students will be able to:

  • Come up with a creative cycle depiction design of their own
  • Use Tracy commands and concepts to create an interactive, informative program
Description

In this lesson, students will learn how to use If Statements which will allow them to use conditions to determine how their code should run. They will also learn how to use string comparison methods inside if statements.

Objective

Students will be able to:

  • Use if statements in order to tell Tracy how to make decisions
  • Use comparison string methods inside if statements
Description

In this lesson, students will learn how to expand on If Statements by including a way to have Tracy make decisions between multiple scenarios.

Objective

Students will be able to:

  • Use if/else statements in order to have Tracy make decisions between multiple scenarios
Description

In this lesson, students will learn why we may want to return values from functions and how to implement this in their own programs. They will also take a deeper dive into the in keyword and how it can be used in programs.

Objective

Students will be able to:

  • use the return keyword to return values from function back to the main program
  • use the in keyword to check if a value is contained inside another
Description

In this lesson, students will learn that while loops allow code to be executed repeatedly based on a condition. They will also be warned that infinite loops are created if the exit condition of the while loop is never met, causing the code inside the while loop to repeat continuously which causes the program to crash and will learn how the break statement can be used to avoid this.

Objective

Students will be able to:

  • Effectively use while loops in their programs
  • Identify infinite loops
  • Use the break statement inside while loops
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:
    • If Statements
    • Comparison String Methods
      • isalpha
      • isdigit/isnumeric
      • isupper
      • islower
      • startswith
      • endswith
    • If/Else Statements
      • With and without elif
    • in keyword
    • Using return in functions
    • While Loops
      • With and without break
Description

In this lesson, students will put together all the concepts they’ve learned thus far. They will be able to use top down design and to write programs that will solve complex problems.

Objective

Students will be able to:

  • Identify the different control structures we can use to modify the flow of control through a program
  • Combine control structures to solve complicated problems
  • Choose the proper control structure for a given problem
Description

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

Objective

Students will be able to:

  • Prove their knowledge of control structures and coding concepts through a multiple choice quiz
Description

Students will get a chance to apply all of the Tracy commands and concepts they have learned throughout the course in this lesson to create an on-screen calculator.

Objective

Students will be able to:

  • Use Tracy commands and concepts to create an interactive calculator
Description

In this lesson, students review the concepts and commands they should be familiar with before beginning the course. They complete a few Tracy challenges on their own and then have a chance to work with a partner to create a larger, scaffolded project developing a digital art platform.

Objective

Students will be able to:

  • Review the following concepts:
    • for loops
      • using i as a variable
      • using extended parameters for stop and increment
    • commenting
    • functions
      • parameters
      • return values
    • data types and casting
    • formatting strings
      • escape sequences
      • concatenation
      • format
    • user input
    • clickable interaction
    • if/elif/else statements
    • while loops
      • forever loops using break
  • Review the following commands:
    • forward
    • circle
      • with and without extended parameters for extent and steps
    • penup
    • pendown
    • goto / setposition
    • setx
    • sety
    • left
    • right
    • setheading / seth
    • bgcolor
    • speed
    • color
      • using color names and hex codes
    • begin_fill / end_fill
    • pensize
    • write
    • type
    • print
    • String methods:
      • capitalize
      • upper
      • lower
      • isalpha
      • isdigit / isnumeric
      • isupper
      • islower
      • startswith
      • endswith
    • input
    • onclick
    • getscreen
    • return
    • break
Description

In this project, students work with a partner to create a digital art platform. They will follow scaffolded steps, but will also be given the opportunity to include some of their own ideas and design and will see what it takes to work successfully with another student while programming.

Objective

Students will be able to:

  • Synthesize concepts and skills they should be comfortable with to create a project with a partner
  • Gain experience programming with a partner
Description

In this lesson, students are introduced to lists. They learn why lists are used in programs and how to create them. Lists are created like this:

list_name = [item_1, item_2, item_3, ...]
Objective

Students will be able to:

  • Explain why lists are useful in programs
  • Create lists with items of various types
Description

In this lesson, students learn about the positive and negative indexing system of lists and how items are accessed in a list.

Objective

Students will be able to:

  • Provide two index values (positive and negative) for any item in a list
  • Access individual items in a list using index values
Description

In this lesson, students learn how to update items in lists using the index value of the item.

Objective

Students will be able to:

  • Use the index value of an item to update the contents of the item in a list
Description

In this lesson, students learn various ways to add items to an existing list with the use of the insert, extend, and append methods.

Objective

Students will be able to:

  • Use the append method to add a new item to the end of a list
  • Use the extend method to add new items to the end of a list
  • Use the addition operator (+) to add two lists together
  • Use the insert method to add a new item at a specific index in a list
Description

In this lesson, students learn various ways to remove items from an existing list with the use of the pop and remove methods and the del keyword.

Objective

Students will be able to:

  • Use the pop method with no argument to remove an item from the end of a list
  • Use the pop method to remove an item from a specific index in a list
  • Use the remove method to remove a specific item from a list
  • Use the del keyword to remove an item from a specific index in a list
Description

In this lesson, students learn how to use two new methods, sort and reverse, to alter list items.

Objective

Students will be able to:

  • Use the sort method to organize items in a list by value
  • Use the reverse method to reverse the order of items in a list
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:
    • Creating lists (list_name = [item_1, item_2, ...])
    • Index values
    • Accessing list items (list_name[index])
    • Updating list items (list_name[index] = new_value)
    • Adding list items using:
      • append
      • extend
      • insert
      • +
    • Removing list items using:
      • pop
      • remove
      • del
    • Using additional list methods:
      • sort
      • reverse
Description

In this lesson, students learn how to use the len function to determine the length of a list.

Objective

Students will be able to:

  • use the len function to determine the number of items in a list
  • use the len function to access list items
Description

In this lesson, students learn how to combine their knowledge of for loops and the len function to loop over items in a list one by one.

Objective

Students will be able to:

  • Use for loops to access items in a list one by one
Description

In this lesson, students learn another way to loop over items in a list one by one.

Objective

Students will be able to:

  • Use the in keyword to access items in a list one by one
Description

In this project, students work with a partner to create an interactive to-do list. They will follow scaffolded steps, but will also be given the opportunity to include some of their own ideas and design and will apply what they previously learned about working successfully with another student while programming.

Objective

Students will be able to:

  • Practice concepts and skills they should be comfortable with to create a project with a partner
  • Gain experience programming with a partner
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:
    • Finding the length of a list using the len function
    • Looping over a list using index values with the range keyword
    • Looping over items in a list using the in keyword
Description

Students will get a chance to apply the Tracy commands and concepts they’ve learned so far to complete a project in this lesson. They will create a visual ticketing system using lists and user click interaction. They will also be able to include their own additional functionality to make the project their own.

Objective

Students will be able to:

  • Create a list to keep track of multiple numbers
  • Use list methods to update the list accordingly
  • Practice with user click interaction and additional Tracy concepts
Description

In this lesson, students learn how to access characters in a string using indexing.

Objective

Students will be able to:

  • Provide two index values (positive and negative) for any character in a string
  • Access individual characters in a string using index values
Description

In this lesson, students learn how to access multiple characters in a string using slicing.

Objective

Students will be able to:

  • Access multiple characters in a string using slicing
  • Describe which characters will be included in a slice when two values, one value, or no values are used (ie: #:#, #:, :#, :)
Description

In this lesson, students learn how to split strings into a list of characters or a list of groups of characters using list and split. They will also learn how to combine list items into a string using join.

Objective

Students will be able to:

  • Use list to separate a string into a list of characters
  • Use split to separate a string into a list of words or groups of characters depending on the element provided for the split character
  • Combine a list of elements into a string using join
Description

In this lesson, students learn how to use four new methods, strip, replace, find, and count, to alter strings.

Objective

Students will be able to:

  • Use the strip method to remove leading and trailing whitespace from a string
  • Use the replace method to use a different character throughout a string
  • Use the find method to return the index value of the first location of a certain element in a string
  • Use the count method to return the number of times an element occurs in a string
Description

In this lesson, students learn how to loop over characters in a string and ways to update strings as they are looped over.

Objective

Students will be able to:

  • Use the in keyword to access characters in a string
  • Use the range keyword to access characters in a string
  • Describe ways to alter characters in a string as it is looped through
Description

In this project, students work with a partner to analyze a blog post about game 5 of the Stanley Cup Final in 2023. They will follow scaffolded steps and will learn about web scraping which they will be simulating in this project.

Objective

Students will be able to:

  • Describe ‘web scraping’
  • Synthesize concepts and skills they have learned up to this point
  • Gain additional experience programming with a partner
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
Description

Students will get a chance to apply the Tracy commands and concepts they’ve learned so far to complete a project in this lesson. They will create a timeline using lists, string manipulation, and user interaction. They will be given the opportunity to get creative with the theme, layout, and functionality of their timeline.

Objective

Students will be able to:

  • Create a list to keep track of events and information
  • Use string methods to effectively display text on the screen
  • Practice with user interaction and additional Tracy concepts
Description

In this lesson, students explore the concept of files and understand the purpose and benefits of File I/O, gaining a high-level understanding of how data is stored on a computer.

Objective

Students will be able to:

  • Understand the concept of File I/O and its importance in computer science
  • Define what a file is and how it relates to data storage
  • Explain the benefits and use cases 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
  • Read a specific number of characters of a file using the read method with a value
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().
  • 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 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 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:
    • File Types
    • Input and Output devices
    • open and close methods
    • read method with and without a parameter
    • readline method
    • readlines method
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
Description

In this lesson, students learn how to manipulate the file pointer position using the seek() and tell() methods in Python. They will explore how seek() can be used to move the pointer to a specific location within a file, enabling 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 tell() method to return the location of the file pointer
  • 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
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:
    • using write to create new files and append information to already existing files
    • using tell to return file pointer position
    • using seek to move the file pointer to a new position
Description

In this lesson, students will get a chance to apply the Tracy commands and concepts they’ve learned so far to complete a project. They will remix a poem using File I/O, lists, and string manipulation. They will be given the opportunity to get creative with the structure an content of their poem.

Objective

Students will be able to:

  • Use File I/O to read from and write to a file
  • Use string methods to alter the contents of the file
  • Use list methods to alter the structure of the file contents
Description

In this lesson, students are introduced to the module where they will explore how Python is used in various industries. In this lesson, they will explore some high level resources about Python and reflect on their Python experience.

Objective

Students will be able to:

  • Look at ways Python is used and why it is a popular language
  • Reflect on their experience learning Python
Description

In this lesson, students explore various ways Python is used in research. They see Python used in different industries such as sports, medicine, and academics.

Objective

Students will be able to:

  • Explore why Python is a popular language in research
  • Explore how Python is used in industries such as sports, medicine, and academics
Description

In this lesson, students explore various ways Python is used in big data. They see Python used in different industries such as sports, music, social media, and artificial intelligence.

Objective

Students will be able to:

  • Explore why Python is a popular language in big data
  • Explore how Python is used in industries such as sports, music, social media, and artificial intelligence
Description

In this lesson, students explore various ways Python is used creatively. They see Python used in different industries such as gaming, design, and movies.

Objective

Students will be able to:

  • Explore why Python is a popular language for creative fields
  • Explore how Python is used in industries such as gaming, design, and movies
Description

In this lesson, students review content with a 25 question End-of-Course Quiz.

Objective

Students will be able to:

  • Prove their knowledge of the following commands and concepts through a multiple choice quiz:
    • Lists
    • String Manipulation
    • File I/O