Python Indentation
This process for python is a very important step. This refers to the spaces that is left before a particular line of code. This may be used to improve readability in other programs but it is a crucial process in python coding.
- Wing 101 enables automatic indentation
Correct piece of code:
if 1< 2:
print("One is smaller than Two!")
Wrong piece of code:
if 1< 2:
print("One is smaller than Two!")