+ 1
Can someone please help me solve this problem?
5 Réponses
+ 3
yards=int(input())
+ 2
yards=int(input("Enter a number: "))
print(yards)
if yards > 10:
print ("High Five")
elif yards <= 10:
print ("Ra!"*yards)
else:
print ("shh")
0
I have done it
0
Only to understand, what do else?
Is it for checking negative numbers?