8

Why am I getting this error

Why am I getting this error (see linting) saying 'End of statement expected' in pycharm?

I am very new to python.

JavaYouth
  • 1,536
  • 7
  • 21
  • 39

1 Answers1

22

Try print with parenthesis in Python3 i.e. print(x) instead of print x

niraj
  • 17,498
  • 4
  • 33
  • 48