Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Displaying values
5. Multiplying and dividing numbers
Variables
The print function
List basics
Summary

Instruction

Great. You can also multiply (*) or divide (/) numbers in the same way:

12 * 34

The code above compute the multiplication and display the result (408).

250 / 100

The code above will compute the division and display the result (2.5).

Exercise

What is the result of 34*67? Display the answer.

Stuck? Here's a hint!

Simply type 34*67.