Please enable JavaScript to use CodeHS

Coding in Math

Description

In this lesson, students will get an overview of the project and start learning about factors and basic calculations in Python.

Objective

Students will be able to…

  • Define the goal of the project.
  • Describe what Python is and where it is used.
  • Write basic print() functions.
  • Write basic math calculations.
Description

In this lesson, students learn about variables in Python and how to use them effectively in their programs.

Objective

Students will be able to:

  • Use Python variables effectively in their code.
Description

In this lesson, students learn about the modulus calculation and Python if statements in order to begin to automate their candy bagging programs.

Objective

Students will be able to:

  • Use the modulus to calculate the remainder of a division problem.
  • Use a Python if statement to check if a condition equals a value.
Description

In this lesson, students learn about for loops as an efficient technique to repeat code a specific number of times.

Objective

Students will be able to:

  • Explain how to repeat code in Python.
  • How to correctly use a for loop.
Description

In this lesson, students pull together all they’ve learned in this module to write a program that calculates all of the factors of a number.

Objective

Students will be able to:

  • Use Python variables, if statements, and for loops to write a program that finds all the factors of a number.
  • Understand what the Greatest Common Factor (GCF) between two numbers is.
  • Write a program to calculate the GCF.