What are local variables and global variables in Python?
sandhyamini Answered question December 16, 2023
							Python local variables are those that are defined inside a function but have a scope that is specific to that function only as opposed to global variables, which are defined outside of any function and have a global scope.
Mercy Margret Answered question September 7, 2023
				