Table of Contents

Python Syntax

Indentation

  • It  indentation to indicate a block of code.
  • it represent the spaces at the beginning of a code line.
Example(Correct Indentation)
if 9> 2:
  print("Nine is greater than two!")
Example(Incorrect Indentation)
if 9> 2:
print("Nine is greater than two!")