Indentation Error

0

I am trying to do a Cloud Quest project for the role of solutions architect the project name being "Cloud Infrastructure with Generative AI". I am facing an indentation error which I am not able to understand. I have attached a screenshot of it as well for your reference. Kindly help Enter image description here

已提问 3 个月前104 查看次数
1 回答
1
已接受的回答

Hi Mayank,

Python uses spacing at the start of the line to determine when code blocks start and end. Errors you can get are:

Unexpected indent. This line of code has more spaces at the start than the one before, but the one before is not the start of a subblock (e.g., the if, while, and for statements). All lines of code in a block must start with exactly the same string of whitespace. For instance:

def a():
...   print "foo"
...     print "bar"
IndentationError: unexpected indent

It looks like the code on line 80 has an unexpected indent compared to the line(s) above it. I suggest that you review the indentation of the lines above it. Alternatively, you can share a screenshot with more context.

Thanks, Ben

profile pictureAWS
专家
已回答 3 个月前
profile picture
专家
已审核 2 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则