2 ответов
+ 7
Whenever you write a : somewhere, the related code needs to be indented/shifted to the right.
So not
if x==5:
print('5')
but
if x==5:
print('5')
+ 4
kirubel indentation simply means 4 line space or simply press the tab key... it usually comes after the : key.