def make_errors() -> None:
    try:
        1/0
        #print(int("hello"))
    except ZeroDivisionError as zd:
        print("Do not divide by Zero Please")
        print(zd)
    except ValueError as ve:
        print("Do not covert a string to int")
        print(ve)
    except Exception as e:
        print("General Exception")
        print(e)

    print("more code in this method")

make_errors()
print("my code continue running normally")
print(42)


# try:
#     1 / 0
# except ZeroDivisionError as ee:
#     print("there is an error")
#     print(ee)
# print("back inside method after handling the error")
# print("back inside method after handling the error")
# print("back inside method after handling the error")
# print("back inside method after handling the error")
