What are local variables and global variables in Python?
Dinesh Beniwal
Select an image from your device to upload
variable declare inside function known as local variable and outside the function is known as global variable
Global variables are the one that are defined and declared outside a function and we need to use them inside a function.