I want to use validation for the variable 'name' to make sure that the user is typing in words.
My ineffective solution:
name = input("What is your name").lower()
if name[0] == "a" or "b" or "c" or "d" or "e" #etc..:
print("Success")
else:
print("You must type in letters!")