0
Is there any recommendation on what is more appropriate? Tab character (\t
) or spaces?
From what I can see, there are usually conventions for language:
- Ruby: two spaces
- Delphi: two spaces
- Python: four spaces
- Java: tabulation
- etc.
In the case of Python we have a particularity, indentation is taken into account by the compiler, but it is smart to recognize both spaces and tab.