Why is it that my code keeps returning yes in the code I've written?
def alphaToPhone(alpha):
for i in range(len(alpha)):
if i=="b" or "k" or "c":
phone="yes"
else:
phone="no"
return phone
print(alphaToPhone("23ht"))