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/
- name
- _name_ (correct)
- name_
- _name
_____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.
- directory
- dir
- dir() (correct)
- show()
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____
- _init_.py (correct)
- init_.py
- _init.py
- init.py
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?
what does the following statements do?
import keyword,sys
what does the following statements do? import keyword,sys
which module is used for file input/output operations in python?
which module is used for file input/output operations in python?
which module is used to work with mathematical functions in python?
which module is used to work with mathematical functions in python?
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))
which of the following is not a valid namespace?
which of the following is not a valid namespace?
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?