+ 1
What's wrong with the code? Test result 3 always fails.
yard = int(input()) a = "Ra!" if yard<=1: print("shh") elif yard>10: print("High Five") print(a*yard)
3 Antworten
+ 2
Jit Saiba , first if clause should be yard < 1, described in the task. Change it and try again.
+ 2
Jit Saiba , you are welcome 🐱
0
TheWh¡teCat 🇧🇬 thanks bro, i got that.