Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
The print function
5. Printing numbers
Variables
Math in Python
The input function
Summary

Instruction

Good. Apart from strings, you can also print numbers. They do not require any quotes:

print(2018)

The code above will simply show 2018 in the console.

Exercise

Print the number 100 in the console window.

Stuck? Here's a hint!

Simply type:

print(100)