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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南