My Program wonā€™t run but I am doing all the steps | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

My Program wonā€™t run but I am doing all the steps

I have this python program that says invalid syntax even though I am doing it exactly perfectly. https://code.sololearn.com/cl0K5r3P9MW5/?ref=app

23rd Mar 2021, 12:13 AM
Zarby Saddleer
Zarby Saddleer - avatar
2 Respostas
+ 5
It's not exactly perfect. It's not valid code. What are you trying to do? x = "7" # this line is ok print(>= 9) # this isn't valid did you mean; print(int(x) >= 9) # False
23rd Mar 2021, 12:18 AM
ChaoticDawg
ChaoticDawg - avatar
+ 1
That makes sense
23rd Mar 2021, 12:24 AM
Zarby Saddleer
Zarby Saddleer - avatar