KnowledgeBoat Logo

Computer Science

In Python which is the correct method to load a module math ?

  1. include math
  2. import math
  3. #include
  4. using math

Python Libraries

3 Likes

Answer

import math

Reason — The syntax for importing whole module is : import modulename. According to the syntax, the correct method to load a module math is import math.

Answered By

3 Likes


Related Questions