Name the Python Library modules which need to be imported to invoke the following functions :
(i) floor ( )
(ii) randrange ( )
Answers
Answered by
4
Please mark me as brainliest.
Attachments:
![](https://hi-static.z-dn.net/files/d84/426879254f1194d3d3d18825f3a3d95c.jpg)
Answered by
1
"Math" Python Library modules that need to be imported to invoke the following functions are floor() & randrange().
About math module for invoke functions :
- The math. floor() function gives a result that rounds a value DOWN to the closest integer if necessary. Look at the math. ceil() technique to round a value UP to the closest integer.
- The randrange() method returns a random integer number inside the supplied range, which includes both start and finish points. The unpredictable.
- The randrange() function accepts three input parameters: start, stop, and width. The two parameters start and width is the only ones that are not required.
Similar questions