Hello, Welcome to my Python course. This is a course for learning Python language. Let’s go, together learning.

Numbers in Python: Integer — int → 42; Floating point — float → 3.14; Type check — type(value)

Visual reading note: Numbers in Python

Integer Data Types

These data types, satisfy integers.

Example: …-2, -1, 0, 1, 2…. etc.

Float Data Types

These data types, satisfy floats.

Get Mustafa Oğuz BARAN’s stories in your inbox

Example: 0.0, 1.2, -1.3… etc.

Let’s learn to use a function now. type()

This function provides information about data types.

Usage

use of integers

use of floats

Congratulations, you’ve taken the first step in Python. More content to come.