![]() |
IndentationError: unexpected indent - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: IndentationError: unexpected indent (/thread-24691.html) |
IndentationError: unexpected indent - jk91 - Feb-27-2020 Hi, When trying to run this program Print ('Hi')I am getting attached error any idea how to resolve it? Thanks RE: IndentationError: unexpected indent - buran - Feb-27-2020 don't post images of code and errors. Please, use proper tags when post code, traceback, output, etc. See BBcode help for more info. es The error is clear - you have extra space in the beginning of the line #1. Remove the spaces |