What will be the output of the following Python code?
from math import powprint(math.pow(2,3))
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
A. Nothing is printed
B. 8
C. Error, method pow doesn’t exist in math module
D. Error, the statement should be: print(pow(2,3))
print(math.pow(2,3))
NameError: name 'math' is not defined