What is the lifetime of a local variable in Python?
Until the program ends
Until the function it is defined in ends
Throughout the entire program
Until explicitly deleted using del keyword
This question is part of this quiz :
Python Namespaces and Scope Quiz