Python Programming - Standard Libraries - Discussion

Discussion Forum : Standard Libraries - General Questions (Q.No. 69)
69.
What is the purpose of the math module?
Working with regular expressions
Performing mathematical operations
Handling dates and times
Parsing JSON data
Answer: Option
Explanation:
import math

# Example usage of math module
result = math.sqrt(25)
print(f"Square root: {result}")
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.