#in c and c++ like language to diffrenciate block of code we use curly braces #in python to show the block of the code we use the indentation (basicaly tab of some active space) a=2 if a==2: print('a is equal to 2') # this line contains one indentation tab that python anyalze this code of block is for if statement