0
Hi please can you help me with this cheer creator practice
I don't know what I'm doing wrong yard = int(input()) if yard > 10: print("High Five") if yard < 1: print("shh") else: print("Ra!" * yard)
2 Antworten
+ 4
You need to use elif statement instead of if in the second condition
elif yard <1:
print("shh")
+ 1
Thanks very much