IT-Academy

Výnimky Python

Feb 2nd, 2017
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. def vypocitajCenuDPH(cena):
  2.    try:
  3.       return int(cena)
  4.    except ValueError as exVal:    
  5.       print "Argument neobsahuje cislo"
  6.       print exVal
  7. ##      print exVal.message
  8.    except TypeError as exType:
  9.         print "Nezadal si argument..."
  10.  
  11. print vypocitajCenuDPH("xyz")
  12. print vypocitajCenuDPH(100)
  13. print vypocitajCenuDPH(None)
  14. print vypocitajCenuDPH()
Advertisement
Add Comment
Please, Sign In to add comment