Python 3.11: A Guided Tour Through Code Transcripts
Chapter: Error Handling Improvements and except*
Lecture: Error handling intro
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
In this chapter, we're going to focus on two new features around error handling.
0:06
The first, a new language feature that lets us capture or catch multiple exceptions in a single try except block
0:14
Sounds crazy. We'll see why it makes a ton of sense. The other one has to do with performance and try except blocks,
0:22
Python 311 has a whole bunch of speed ups for using.
0:25
Try. Except these days, we're gonna explore both of those with some fun code samples. So lets get in to it.