In Python which is the correct statement to load sqrt() and pow() functions from math module
A. import sqrt,pow
B. from math import sqrt,pow
C. import sqrt, pow from math
D. import math
Answers
Answered by
0
Answer:
import sqrt, pow from math
Similar questions