Files
2023-12-10 17:38:28 +03:00

10 lines
323 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Исключения
try: # Указываем "опасное место"
2/0
except: # Проверка на все ошибки
print('Абшибка')
else: # Вывод только если нет ошибок
print('Абшибак нет')
finally: # Вывод всегда
print('А пуфик')