+ 1
I Don't see anything wrong here, it failed a test case
yards =int(input()) if yards in range(1,11): print("Ra!"* yards) elif yards >10: print("high five") else: print("shh")
2 ответов
+ 8
You didn't copy one of the output strings properly.
It should be 'High Five'.
I recommend just copypasting them to avoid that sort of mistake.
+ 2
Thanks