0

Edit: Nevermind Just figured it out

  • 1
    Please copy the relevant code snippet and the error message as text into your question. Thanks – stholzm Apr 10 '17 at 15:53
  • Possible duplicate of [What does "SyntaxError: Missing parentheses in call to 'print'" mean in Python?](http://stackoverflow.com/questions/25445439/what-does-syntaxerror-missing-parentheses-in-call-to-print-mean-in-python) – Łukasz Rogalski Apr 10 '17 at 16:33

1 Answers1

0

You are using wrong syntax for print. In Python 3x , print required statement to be enclosed in parenthesis.

print('%s got :%s expected :%s' % (prefix, repr(got), repr(expected)))

Surajano
  • 2,688
  • 13
  • 25
  • In the error there is no parenthesis for print, send the new error that you are getting after adding parenthesis – Surajano Apr 11 '17 at 05:59