428,426 views
18 votes
18 votes
Why is this code giving me syntax errors on the colons and on print

print("Press enter to start program")
mark = input()
speed = int(input(Enter Mark")
if mark = >60+
print("Passed")
elif 1 <= mark >= 40:
print (“FAILED")

User Oasia
by
2.5k points

1 Answer

7 votes
7 votes

Answer:

Step-by-step explanation:

You did not give double quotations in Enter Mark part

you did not give colon in if mark = > 60 :

User Cammie
by
2.9k points