Podcast
Questions and Answers
you can find the name of a module by using the ____ attribute of the module/
you can find the name of a module by using the ____ attribute of the module/
_____is the built-in function that lists the identifiers defined in a module.
_____is the built-in function that lists the identifiers defined in a module.
every package in python is a directory which must have a special file called____
every package in python is a directory which must have a special file called____
which of the statements is used to import all names from a module into the current calling module?
which of the statements is used to import all names from a module into the current calling module?
Signup and view all the answers
what does the following statements do?
import keyword,sys
what does the following statements do? import keyword,sys
Signup and view all the answers
which module is used for file input/output operations in python?
which module is used for file input/output operations in python?
Signup and view all the answers
which module is used to work with mathematical functions in python?
which module is used to work with mathematical functions in python?
Signup and view all the answers
what is the output of the following code?
import math
print(math.ceil(3,2))
what is the output of the following code? import math print(math.ceil(3,2))
Signup and view all the answers
which of the following is not a valid namespace?
which of the following is not a valid namespace?
Signup and view all the answers
which keyword is used to import a module and rename it in python?
which keyword is used to import a module and rename it in python?
Signup and view all the answers