Preview lessons, content and tests

Computer Science & Programming solved. All in one platform.

1. To trial the platform and take tests, please take a few seconds to SIGN UP and SET UP FREE.

2. Searching for something specific? See our text overview of all tests. Scroll right for levels, and lists.

3. Student and Teacher User Guides |  Schemes of Work |   Real Teacher use Videos |


Join 36000+ teachers and students using TTIO.

Python Arithmetic Operators

Starter - Modulo Magic: Watch this video and discuss! How do you think this "magical" calculation was done? Scroll down to the bottom to see the code behind this mental arithmetic.

=

Arithmetic operators are used with numeric values to perform common mathematical operations:

Modulo Magic - Coded Solution - Try it yourself

Teaching/Learning Presentation and a Wonderful Coding Challenge (with video demonstrations)

Additional Learning Presentation

This presentation provides an overview of MOD and other operators along with trace tables. It provides examples in VB.Net which will be similar to Pseudocode.

Try it yourself

Operators shown below 

Operator Name Example Try it
+ Addition x + y Try it »
- Subtraction x - y Try it »
* Multiplication x * y Try it »
/ Division x / y Try it »
% Modulus x % y Try it »
** Exponentiation x ** y Try it »
// Floor division x // y Try it »

www.teachyourselfpython.com