For Some reason the loop wont carry out the command of yes and instead it just keeps repeating at the incorrect part
i tried changing the while to an if and it didn't help, I'm not sure why it doesn't work
FA=input ('Are there assignments to grade? Yes/No:')#FA refers to whether or not there are assignments to grade
FA=FA.upper()
while FA not in ('Yes', 'No'):
print ('Please enter a valid input: either Yes or No')
FA=input('Are there any assingments to grade? Yes/No:')
FA=FA.upper()
#outputs
while FA == 'Yes':