What are local variables and global variables in Python?
sandhyamini Answered question December 16, 2023
Python Global variables are those which are not defined inside any function and have a global scope whereas Python local variables are those which are defined inside a function and their scope is limited to that function only.
Shathana. S.R. Answered question September 7, 2023
