top of page

A Big Calculator

Other Operations

Comments

Checkpoint #1

Variables

Checkpoint #2

Summary

A Big Calculator

A computer is, at heart, a very complex calculator. We can use the computer to perform calculations using the +-*, and / operators to add, subtract, multiply, and divide, respectively. Parentheses () also work the same way as in the order of operations; anything in parentheses is performed before other operations.

​

Try it for yourself! Type the following into the coding terminal and hit the green "run" button to execute your code.

1 print(4.4 + 5.3)

Start coding here

bottom of page