👉 The `import math` statement in Python imports the entire Math module, which contains a collection of mathematical functions and constants. This module provides access to fundamental mathematical operations like arithmetic (addition, subtraction, multiplication, division), trigonometric functions (sin, cos, tan), exponential and logarithmic functions (exp, log), powers and roots (pow, sqrt), and more. By importing the Math module, you gain direct access to these mathematical tools within your Python scripts, simplifying calculations and enhancing code readability and maintainability.