As I write code in Python and suddenly feel like adding a new block in front of the code I have already written... the indentation of the complete code is affected...
It is a very tedious process to move to each line and change the indentation...is there a way to do auto indent or something?
For example:
def somefunction:
     x =5
     return x
If I want to add a control block
For example:
def somefunction:
     if True:
         x =5
         return x
     return 0
this small change of adding a control block took a lot of tab work...
Is there a shortcut or something to do this easily?
 
     
     
     
     
     
     
     
     
     
     
     
     
     
    