Beginner Python
Q14 / 101

How do you import a module in Python?

Correct! Well done.

Incorrect.

The correct answer is D) import math

D

Correct Answer

import math

Explanation

import math loads the math module. You can also use from math import sqrt to import specific names.

Progress
14/101