0
Whats wrong with my code? (Easy Challange)
Easy Cheer challenge. Test case 3 not solving yards_gained = int(input()) X = 'Ra!' Y = 'High Five' Z = 'shh' if yards_gained > 10: print(Y) if yards_gained < 1: print(Z) else: print(X * yards_gained)
1 Answer
+ 2
Taylor Horn , change second if statement to elif and then everything works.