Local and Global variables in Python
Local Variables
When you declare variables inside a function , they are not related in any manner to outside the function(i.e the main block) This is called as Scope of the variables.Every variable inside your program have a Scope associated with it....
techwriter.hashnode.dev3 min read