+ 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 Answers
+ 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.