I want to allow only 1 and 0 inputs for user. How do I do that?
num2=int(input("Is Big Nose true or false? (1/0): "))
num3=int(input("Is Bandana true or false? (1/0): "))
num1=int(input("Is Spots true or false? (1/0)"))
if (num1 and num2 and num3 and num4):
print("Becky")
elif (num1 or num2 and num3 and num4):
print("Tara")
elif (num3 and num4):
print("Keri")
else:
print("Laura")