1- Basic data types

Number: digital

(1) Integer: int

(2) Float: float (including single degree float+ double degree: other languages)

Ps :type (2/2) =float type (2//2) = int

Type (): displays the current data type

(3)bool Boolean type: indicates true or false

12j (4)complex

2 – into the system

0 b: binary

0 o: octal

0x: hexadecimal

Convert the binary :bin() method

Convert decimal :int() method

Convert octal :oct() method

Convert hexadecimal :hex() method