KnowledgeBoat Logo

Computer Science

Variables defined inside functions can have global scope.

Python Functions

1 Like

Answer

False

Reason — Variables defined inside functions have only local scope. This means that they are only accessible within the function in which they are defined.

Answered By

3 Likes


Related Questions