CBSE Class 12 Computer Science
Question 44 of 62
Using Python Libraries — Question 12
Back to all questionsAfter importing a module using import module statement, to access one of the functions, we have to specify the name of the module and the name of the function, separated by a dot. This format is called dot notation.
For example:
import math
print(math.pi)
print(math.sqrt(25))