Numbers
Type of Numbers : Integers : Whole numbers Floats (Floating Point numbers) : Decimal numbers Complex numbers : Numbers that have real and imaginary parts Some maths operations that can be done using Python are: Addition + : Adding numbers Subtraction - : Subtracting numbers Division / : Dividing numbers Multiplication * : Multiply numbers Exponential ** : x to the power of y Modulo % : Leftover number from division Floor division // : Returns the value of division without decimal points Example of Floor Division // There’s a math module that can be imported to perform mathematical operations on numbers...