11.
What is the purpose of the __init__.py file in a Python module?

12.
What is the purpose of the sys.path list in Python?

15.
What will be the output if we try to extract only the year from the following Python code?
(time.struct_time(tm_year=2017, tm_mon=6, tm_mday=25, tm_hour=18, tm_min=26, tm_sec=6, tm_wday=6, tm_yday=176, tm_isdst=0))
import time
t=time.localtime()
print(t)

18.
What will be the output of the following Python function, assuming that the random module has already been imported?
random.uniform(3,4)

19.
How can you determine the path of the currently executing script in Python?

20.
What will be the output of the following Python code?
import time
t=(2010, 9, 20, 8, 45, 12, 6, 0, 0)
time.asctime(t)

Read More Section(Module in Python)

Each Section contains maximum 100 MCQs question on Module in Python. To get more questions visit other sections.