KnowledgeBoat Logo
|

Computer Science

The variable declared inside a function is called a global variable.

Python Functions

1 Like

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.

Answered By

2 Likes


Related Questions