##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 08\08.1265 - No Title.py
# Description: No Title
##############################################################################
def is_even(n):
try:
return n % 2
finally:
print("Executed before returning")
try:
print(2, is_even(2))
print("A", is_even("A"))
except Exception:
print("Something wrong happened")