0
[SOLVED] Can someone help me with my code?
So here's the code. Can someone fix it for me? I'm really new to this. def bird_available(bird): bird_variety = ("pigeon", "duck", "lovebirds") return(bird.lower() in bird_variety) have_bird = bird_available(input().lower()) print(" is available", have_bird) I just want the output to display the "<input> is available true/false" I'm trying to learn Python but i'm just really stuck and I need to solve this so I would know what went wrong. Thank you!
3 Respostas
+ 6
def bird_available(bird):
bird_variety = ("pigeon", "duck", "lovebirds")
return(bird.lower() in bird_variety)
input = input().lower()
have_bird = bird_available(input)
print(input, " is available", have_bird)
am I corrected understand what you want?
- 1
Yes! Thank you so much for the help!