Answer:
The correct answer B) from temperature import *
We use from statement to import the module into the current namespace.
Step-by-step explanation:
Incorrect answers:.
C)import temperature -> import statement is used to execute a python file as a module into another python source file.
A)import temperature as t, D)import temperature as temp -> These are not valid statements in python.