Exception Alias
When you catch an exception (error), you can save information about this exception using the as
keyword.
The full alias structure:
except {error_type} as {variable_name}:
# code block
The alias allows us to display information about caught errors.
Look at the example:
1234567try: a = "string" + 10 except TypeError as error: print("TypeError:", error) print("The following code should be executed:") print("5 + 10 =", 5 + 10)
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 1. Capitolo 5
Chieda ad AI
Chieda ad AI
Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione
Awesome!
Completion rate improved to 11.11
Exception Alias
Scorri per mostrare il menu
When you catch an exception (error), you can save information about this exception using the as
keyword.
The full alias structure:
except {error_type} as {variable_name}:
# code block
The alias allows us to display information about caught errors.
Look at the example:
1234567try: a = "string" + 10 except TypeError as error: print("TypeError:", error) print("The following code should be executed:") print("5 + 10 =", 5 + 10)
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 1. Capitolo 5