Please enable JavaScript to use CodeHS


Python Basics with Tracy the Turtle 2

Lessons

  1. Refresher: Challenges with Tracy

    1. 1.1 Refresher: Challenges with Tracy

    2. 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.

    3. 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
    4. 1.2 [Partner Project] Digital Art Platform

    5. 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.

    6. 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
  2. Lists

    1. 2.1 Creating Lists

    2. 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, ...]
    3. Objective

      Students will be able to:

      • Explain why lists are useful in programs
      • Create lists with items of various types
    4. 2.2 Accessing List Elements

    5. Description

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

    6. 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
    7. 2.3 Updating List Elements

    8. Description

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

    9. Objective

      Students will be able to:

      • Use the index value of an item to update the contents of the item in a list
    10. 2.4 Adding List Elements

    11. 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.

    12. 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
    13. 2.5 Removing List Elements

    14. 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.

    15. 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
    16. 2.6 Additional List Methods

    17. Description

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

    18. 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
    19. 2.7 Lists Quiz

    20. Description

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

    21. 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
  3. Lists and Loops

    1. 3.1 List Length

    2. Description

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

    3. 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
    4. 3.2 Looping Over a List by Index

    5. 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.

    6. Objective

      Students will be able to:

      • Use for loops to access items in a list one by one
    7. 3.3 Looping Over a List by Item

    8. Description

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

    9. Objective

      Students will be able to:

      • Use the in keyword to access items in a list one by one
    10. 3.4 [Partner Project] Interactive To-Do List

    11. 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.

    12. 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
    13. 3.5 Lists & Loops Quiz

    14. Description

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

    15. 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
  4. [Project] Ticketing System

    1. 4.1 Project: Ticketing System

    2. 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.

    3. 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
  5. Strings

    1. 5.1 String Characters

    2. Description

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

    3. 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
    4. 5.2 Substrings

    5. Description

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

    6. 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: #:#, #:, :#, :)
    7. 5.3 Strings & Lists

    8. 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.

    9. 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
    10. 5.4 Additional String Methods

    11. Description

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

    12. 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
    13. 5.5 Looping Over Characters in a String

    14. Description

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

    15. 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
    16. 5.6 [Partner Project] 2023 Stanley Cup Final

    17. 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.

    18. 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
    19. 5.7 Strings Quiz

    20. Description

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

    21. 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
  6. [Project] Timeline

    1. 6.1 Project: Timeline

    2. 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.

    3. 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
  7. File I/O: Reading from Files

    1. 7.1 What is File I/O

    2. 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.

    3. 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
    4. 7.2 Reading Characters from File

    5. Description

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

    6. 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
    7. 7.3 Reading Line from File

    8. Description

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

    9. 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.
    10. 7.4 Reading All Lines from File

    11. 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.

    12. 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.
    13. 7.5 File I/O: Reading from Files Quiz

    14. Description

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

    15. 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
  8. File I/O: Writing to Files

    1. 8.1 Write to End of File

    2. 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.

    3. 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
    4. 8.2 Move File Pointer Position

    5. 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.

    6. 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
    7. 8.3 File I/O: Writing to Files Quiz

    8. Description

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

    9. 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
  9. [Project] Poetry Remixer

    1. 9.1 Project: Poetry Remixer

    2. 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.

    3. 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
  10. Python in the Real World

    1. 10.1 Intro: Python in the Real World

    2. 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.

    3. 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
    4. 10.2 Python in Research

    5. 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.

    6. 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
    7. 10.3 Python in Big Data

    8. 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.

    9. 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
    10. 10.4 Python for Creatives

    11. 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.

    12. 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
    13. 10.5 Final Project

    14. Description

      In this lesson, students will be given much creative freedom to develop a project that showcases something from their research on Python in the real world.

    15. Objective

      Students will be able to:

      • Brainstorm, plan, develop, and present a project of their choosing around the theme of ‘Python in the Real World’
    16. 10.6 Python Basics with Tracy 2 Quiz

    17. Description

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

    18. 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
  11. Assessment 2

    1. 11.1 Assessment 2

    2. Description

      In this lesson, students review content with an assessment.

    3. Objective

      Students will be able to:

      • Prove their knowledge of coding in Python by completing an exam