Exception | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Exception

y=[int(i) for i in input().split()] print(y) def factorial(x): if x==0 or x==1: return 1 else: return x*factorial(x-1) def coef_binom(n,k): if k >n: print("Error:k>n") else: return factorial(n)/(factorial(k)*factorial(n-k)) print(coef_binom(y[0],y[1])) Hi, I want to use an exception if k >n. How I do modify this code?

3rd Apr 2019, 12:46 PM
Silvio Petix
Silvio Petix - avatar
2 Answers
+ 2
Thanks
3rd Apr 2019, 12:46 PM
Silvio Petix
Silvio Petix - avatar
+ 2
For example: raise ValueError (or whatever Error you want to use.) Here's a list to choose from (and you can also make your own). https://docs.python.org/3/library/exceptions.html
3rd Apr 2019, 1:02 PM
HonFu
HonFu - avatar