print (' give me your name \n without any number ')
name=input('enter your name ')
print (name)
for i in name:
if i == 1 or 2 or 3:
print ('this name have number in it you failed ')
print (i)
else:
print ("you pass ")
even if I entered the name with the number 1~3 or without it will choose the first statement why?