I am trying to create a loop where the user is given choices 1-8 and if they do not choose 1-8, it loops them back around re-enter number 1-8. I am attempting to use a while loop with two conditions. What am I missing?
fm_select = int(input("Enter a number 1-8"))
while fm_select <= 8 and fm_select >= 1: