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
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
+ 1
That makes sense