My Program won’t run but I am doing all the steps | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
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 Antworten
+ 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