0
Why this code fails at Test Case 3 ?
I am solving the 'Cheer Creator ' Challenge in python but it fails at Test Case 3. Can anyone help me what am I missing in here? yard = int(input()) if yard >10: print (yard*"High Five") elif yard <1: print ("shh") elif yard in range (1,11): print (yard*"Ra!")
2 ответов