Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def vypocitajCenuDPH(cena):
- try:
- return int(cena)
- except ValueError as exVal:
- print "Argument neobsahuje cislo"
- print exVal
- ## print exVal.message
- except TypeError as exType:
- print "Nezadal si argument..."
- print vypocitajCenuDPH("xyz")
- print vypocitajCenuDPH(100)
- print vypocitajCenuDPH(None)
- print vypocitajCenuDPH()
Advertisement
Add Comment
Please, Sign In to add comment