global and local scope?

  • A variable created inside a function belongs to the local scope of that function, and can only be used inside that function.
  • A variable created in the main body of the Python code is a global variable and belongs to the global scope. Global variables are available from within any scope, global and local.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *