I'm fairly new to Python and I'm using a while True loop. Inside that loop I have
Sentence= input("please enter a sentence").lower().split()
However I want to create validation so an error message appears when the user inputs a number instead of a letter. I was researching and saw the use of .isalpha. Would anyone where this would go in the whie true loop to create and error message for inputting numbers?