getting indentation error when trying to print in intellij

Viewed 23
1 Answers

Whitespace is syntactically important to the python interpreter. You can't do what you are trying to do, it is a syntax error.

Related