My error handling is stuck, I keep getting the error that unindented amount does not match.
def landing():
try:
print("1) Create a new member")
print("2) Check for fines")
print("3) Check overdues")
print("4) Check for available services")
print("5) Exit: ")
choice = input("Please enter a number from the menu:")
if choice in range (1,6):
except ValueError:
print("choice must be a number from 1 -5")