1'''Local variables are those that are defined in a block '''
2a = 1 #This is NOT a local variable, this is a global variable
3def add():
4 b = 1 #This IS a local variable
5 print(b)
6add()
7#If we tried to print(b) outside of the add() function, we would get an error