Write the module that need to be imported to execute the following function
i) floor() ii) time()
Answers
Answered by
11
Answer:
i) math module
ii) time module
Explanation:
After importing
i) Use math.floor(float_num).
ii) Use time.time().
Answered by
11
Modules:
- math
- time
Usage:
from math import floor
from time import time
Similar questions