Foundations of Python

You are currently auditing this course.
49 / 134

Python - Calculations with variables

Let's do some calculations with variables. We will write a code to calculate the area of a rectangle. The formula for calculating the area of rectangle is

Area = Height * Width
INSTRUCTIONS

Create variables in the Jupyter notebook on the right-hand side. Press Shift + Enter to run code in individual cells.

  • Define a variable height with the value 20
  • Define a variable width with the value 80
  • Define a variable area_of_rectangle and assign the formula for calculating the area to it.

Loading comments...