Data Types
Python has various data types to represent different types of values. Some of the most commonly used data types are:int (integers) – positive or negative whole numbers,e.g. 10, -20, 0 float (floating-point numbers) – numbers with decimal points,e.g. 1.0, 3.14, -0.5 complex (complex numbers) – numbers with real and imaginary parts,e.g. 1 + 2j, 3.2 […]