31.
How can you catch and handle multiple exceptions in a single except block in Python?

35.
How can you catch and handle multiple exceptions in a single except block in Python?

39.
Which of the following statements is true regarding the order of except clauses?

40.
Compare the following two Python codes shown below and state the output if the input entered in each case is -6?
CODE 1
import math
num=int(input("Enter a number of whose factorial you want to find"))
print(math.factorial(num))
 
CODE 2
num=int(input("Enter a number of whose factorial you want to find"))
print(math.factorial(num))