Pretty much the title, I am making a hangman game in python and this def is supposed to make sure the input is actually a letter but it's not working, what's wrong?
def guess():
while True:
var = (input())
if var.isalpha == False or len(var) != 1:
print ("Not a letter")
else:
print ("Is a letter")
guess()