Python Math Module
Basic Mathematical Functions:
math.sqrt(): Calculates the square root of a number.
math.pow(): Raises a number to a specified power.
math.exp(): Calculates the exponential of a number.
math.log(): Calculates the natural logarithm of a number.
ma...