+ 5
Tab/spaces in python is like ";" in C/C++
+ 2
Your program should be indented correctly, because python uses that to mark scope of any statements.
+ 2
đ#H P 22âąđ No. Indentation (aka use of tabs or spaces) is simply to delimit blocks in python.
In some languages you might use curly braces {} to achieve the same.
Java đ
if (true)
{
spam();
}
Python đ
if True:
spam();
^
4 spaces recommended
0
using a good text editor plays an important rule right there, sometimes you might not know how much tabs you need, not like html or other languages that ignore the way your code is written.



