- A local scope refers to the local objects available in the current function.
 - A global scope refers to the objects available throughout the code execution since their inception.
 - A module-level scope refers to the global objects of the current module accessible in the program.
 - An outermost scope refers to all the built-in names callable in the program. The objects in this scope are searched last to find the name referenced.
 
Joymercy Asked question June 6, 2023
							