Cheer creator 4/5 Help pls! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Cheer creator 4/5 Help pls!

a = int(input()) if a >= 10: print('High Five') elif a < 1: print('shh') else: print(a * 'Ra!')

30th Apr 2020, 6:58 AM
Vladislav Buzin
1 Answer
+ 3
********* 10 yards further down the field, you stand up and give your friend a high five. a = int(input()) if a > 10: print('High Five') elif a < 1: print('shh') else: print(a * 'Ra!') it's ten yards further so shouldn't be a >= 10 instead a > 10 in your first if statement
30th Apr 2020, 7:10 AM
Rohit Kh
Rohit Kh - avatar