Why I am getting p of print as syntax error in python???
Answers
Answered by
1
The error message is also very helpful. It tells you that the indentation level of the line doesn't match any other indentation level. In other words, print('done') is indented 2 spaces, but Python can't find any other line of còde that matches this level of indentation.
Similar questions