0
Basic question.
From the solutions page. Iâm tackling this Cheer Creator challenge and for the life of me I canât see whatâs wrong with my code. play = int() if play <1: print("shh") elif play >10: print("High Five") else: print("Ra!" * play) Extremely basic I know. I use an input statement to plug in numbers manually and it works. When I upload it to SoloLearn it doesnât even though I change the âplayâ back to an int. Iâve noticed this with a few challenges, are they glitched or am I dumb?
2 Answers
+ 2
Shouldn't it be
play = int( input() )
Instead of
play = int()
0
yes thank you!