Saved Bookmarks
| 1. |
Why I am getting p of print as syntax error in python??? |
|
Answer» 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. |
|