try:
    e='hi'
    raise Exception("i'll kill e")
except Exception as e:
    pass

print(e)