Computer Science, asked by anshika6143, 7 months ago

Name the Python Library modules which need to be imported to invoke the
following functions:
(i) floor()
random()​

Answers

Answered by vaishnavipilla2008
1

Encapsulation – Encapsulation is capturing data and keeping it safely and securely from outside interfaces.

Encapsulation – Encapsulation is capturing data and keeping it safely and securely from outside interfaces. Polymorphism- This is the ability to exist in various forms.

HOPE YOU ARE SATISFIED WITH THE ANSWER ☺️

IF YOU ARE SATISFIED WITH THE ANSWER PLEASE FOLLOW ME AND MARK ME AS BRAINLIEST

Answered by imtiyazallam
6

Answer:

For floor() you require math module.

For random() you require random modeule

before you use the function you must import.

Syntax to import the module: import <module_name>

Example: import math

Similar questions