choice = 0
def numCheck():
if choice % 2 == 0:
print("number is even")
else:
print("number is odd")
def main():
print("Even of Odd Checker\n")
choice = input("enter the number you would like to check:\n")
numCheck()
print(choice)
repeat = input("would you like to conitnue? (y/n)\n")
print(repeat)
if repeat != ("y"):
exit()
elif repeat == ("y"):
main()
main()
the answer always comes out even for some reason, ive changed things around so many times but i dont understand why
pretty sure im using module wrong in some way