My code is:
print "submitted"
but it doesn’t output.
What am I doing wrong?
>Solution :
You get this error because in Python 3, you must wrap the string with parenthesis.
Your code should say:
print("submitted")
This should work with parenthesis. Your code would have been accepted in Python 2.