1
00:00:00,180 --> 00:00:04,170
In Python we have numbers such as integers and floats.

2
00:00:04,260 --> 00:00:06,510
In this example I've gone into print to computer.

3
00:00:06,510 --> 00:00:08,350
I'm going to start Python 3.

4
00:00:08,490 --> 00:00:12,420
Type allows me to see what type of number we're looking at.

5
00:00:12,420 --> 00:00:15,000
So if I say Type 1 that's an integer.

6
00:00:15,210 --> 00:00:21,960
One two three is an integer integers are essentially whole numbers that are positive or negative.

7
00:00:21,960 --> 00:00:29,280
If I change this to one dot two three notice that's a float floating point numbers will float have decimal

8
00:00:29,280 --> 00:00:36,470
values so as an example this is an integer but this is a float.

9
00:00:36,750 --> 00:00:38,860
But this is an integer.

10
00:00:39,150 --> 00:00:45,180
That's a quick overview of the difference between a floating point number and an integer integers are

11
00:00:45,180 --> 00:00:48,030
whole numbers positive or negative.

12
00:00:48,030 --> 00:00:50,490
Floating point numbers have a decimal values.
