-1

SyntaxError: Missing parentheses in call to 'print'. Did you mean print('unit test')? as I want to just get the access of the image in the camera

1 Answers1

0

Yes. If that's what you really wanted to print. I believe that you were using python3, in which print is a function rather than a statement(unlike python2)

For python 3:

print('Unit test')

For python 2:

print 'Unit test'
Achint Sharma
  • 355
  • 4
  • 11