Python Forum
try except/ if else
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
try except/ if else
#2
you should give except the exception condition like:
except ValueError:
    ...
# or
except (ValueError, BufferError):
Otherwise exceptions caused by something outside of your code block will not get caught
Then you can test by throwing a known illegal value to the code
Reply


Messages In This Thread
try except/ if else - by menator01 - Apr-15-2020, 02:33 AM
RE: try except/ if else - by Larz60+ - Apr-15-2020, 03:04 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020