🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

निम्नलिखित का आउटपुट क्या होगा पायथन कोड?

What will be the output of the following Python code ?

from math import factorial
print(math.factorial(5))
A
120
B
Nothing is printed
C
Error, method factorial doesn’t exist in math module
D
Error, the statement should be : print(factorial(5))
Explanation

Sure!

  • You imported factorial directly, so you should use factorial(5), not math.factorial(5).
  • Using math.factorial(5) will give an error because math wasn't imported.

Answer: (D) Error, the statement should be: print(factorial(5)).

Correct Answer: D) Error, the statement should be : print(factorial(5))

Latest Updates