Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Exception Alias | Handling Structure
Error Handling in Python

bookException 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:

1234567
try: a = "string" + 10 except TypeError as error: print("TypeError:", error) print("The following code should be executed:") print("5 + 10 =", 5 + 10)
copy

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 1. Capítulo 5

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

Awesome!

Completion rate improved to 11.11

bookException Alias

Deslize para mostrar o 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:

1234567
try: a = "string" + 10 except TypeError as error: print("TypeError:", error) print("The following code should be executed:") print("5 + 10 =", 5 + 10)
copy

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 1. Capítulo 5
some-alt