Computer Science, asked by ashmidev007, 6 months ago

Name the Python Library modules which need to be imported to invoke the following functions :

(i) floor ( )

(ii) randrange ( )​

Answers

Answered by Anonymous
4

Please mark me as brainliest.

Attachments:
Answered by adventureisland
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