Learn Python – Basic Day2 Python Syntax Indentation: Python uses indentation to define blocks of code. A block of code is a group of statements that should be treated as a unit. Example: if 5 > 2: print(“Five is greater than two!”) Comments: Comments are used to explain the code and make it more readable. […]