The statement to import math module is—call math.
2 Likes
False
Reason — The statement to import the math module in Python is import math.
import math
Answered By
3 Likes
A function call can be made several times in a Python module.
A module is loaded only once regardless of the number of times it is used.
A module is not necessarily to be imported before being used.
floor() returns the closest integer value less than or equal to a floating point number.