The variable declared inside a function is called a global variable.
Answer
False
Reason — Variables declared inside a function in Python are called local variables. These variables are local to that function and can only be accessed within that function's scope.