Exception Arguments : Try : Statement PYTHON TUTORIALS


PYTHON TUTORIALS » Statement » Try »

 

Exception Arguments


def myFunctiona, b, c :
    if a < or a > 10 :
        raise ValueError, "a must be between 0 and 10"
    if b > 50 :
        raise ValueError, "b must be less than 50"
    return a*b + c

myFunction(-1,5,3)
myFunction(5,100,2)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Statement
» Try