निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
from math import pow
print(math.pow(2,3))
A)
B)
C)
D)
Explanation:
Sure!
You imported pow
directly, so you should use pow(2, 3)
instead of math.pow(2, 3)
.
Using math.pow(2, 3)
causes an error.
Answer: (D) Error, the statement should be: print(pow(2, 3)).