+ 1
Error
ars = 12 if ars == 12: print ("da")
2 Respostas
+ 3
ERROR:
File "..\Playground\", line 2
if ars == 12:
^
IndentationError: unexpected indent
--------
SOLUTION:
ars = 12
if ars == 12:
print ("da")
--------
CONCLUSION:
This is what happens when you -force- people to properly format their code in the most readable form, rather than leaving it as something that's optional.
0
In case it is Python, you should print "spam" instead of "da".