You need an or
operation and not and
to achieve what you want. Also, you need to take user input first time before entering the while
loop.
So your code should be:
ask = input(message).upper()
while len(ask) != 1 or ask.isalpha() != True:
ask = input(message).upper()
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…