>>> x = 6
>>> if x<6 :
… print (‘Small’)
File “<stdin>”, line 2
print (‘Small’)
^
IndentationError: expected an indented block after ‘if’ statement on line 1
>>>
Where is the problem?
submitted by /u/xFrankino
[link] [comments]
r/learnpython >>> x = 6 >>> if x<6 : … print (‘Small’) File “<stdin>”, line 2 print (‘Small’) ^ IndentationError: expected an indented block after ‘if’ statement on line 1 >>> Where is the problem? submitted by /u/xFrankino [link] [comments]
>>> x = 6
>>> if x<6 :
… print (‘Small’)
File “<stdin>”, line 2
print (‘Small’)
^
IndentationError: expected an indented block after ‘if’ statement on line 1
>>>
Where is the problem?
submitted by /u/xFrankino
[link] [comments]