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")

Respuesta :

Answer:

Explanation:

You did not give double quotations in Enter Mark part

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

Otras preguntas