Wednesday, 7 January 2026

Python Coding challenge - Day 951| What is the output of the following Python Code?


 Code Explanation:

1. Defining the Outer Function
def outer(lst=[]):

A function named outer is defined.

It has a parameter lst with a default value of an empty list [].

This default list is created once at function definition time, not each time outer() is called.

2. Defining the Inner Function
    def inner():
        lst.append(len(lst))
        return lst

inner is defined inside outer.

It captures lst from the enclosing scope (closure).

Each call:

Appends the current length of lst to lst.

Returns the modified list.

3. Returning the Inner Function
    return inner

outer returns the function inner.

The returned function keeps a reference to the same lst.

4. Creating Two Functions
f = outer()
g = outer()

outer() is called twice.

But since lst is a shared default argument, both f and g refer to the same list object.

So:

f.lst  → same list
g.lst  → same list

5. Calling the Functions
print(f(), g())

Let’s evaluate:

▶ f():

Initial lst = []

len(lst) = 0 → append 0

lst = [0]

Returns [0]

▶ g():

Uses the same list

Now lst = [0]

len(lst) = 1 → append 1

lst = [0, 1]

Returns [0, 1]

6. Final Output
[0] [0, 1]

Final Answer
✔ Output:
[0] [0, 1]

0 Comments:

Post a Comment

Popular Posts

Categories

100 Python Programs for Beginner (118) AI (176) Android (25) AngularJS (1) Api (7) Assembly Language (2) aws (27) Azure (8) BI (10) Books (261) Bootcamp (1) C (78) C# (12) C++ (83) Course (84) Coursera (299) Cybersecurity (28) Data Analysis (24) Data Analytics (16) data management (15) Data Science (238) Data Strucures (15) Deep Learning (95) Django (16) Downloads (3) edx (21) Engineering (15) Euron (30) Events (7) Excel (18) Finance (9) flask (3) flutter (1) FPL (17) Generative AI (51) Git (9) Google (47) Hadoop (3) HTML Quiz (1) HTML&CSS (48) IBM (41) IoT (3) IS (25) Java (99) Leet Code (4) Machine Learning (214) Meta (24) MICHIGAN (5) microsoft (9) Nvidia (8) Pandas (12) PHP (20) Projects (32) Python (1237) Python Coding Challenge (952) Python Mistakes (22) Python Quiz (390) Python Tips (5) Questions (3) R (72) React (7) Scripting (3) security (4) Selenium Webdriver (4) Software (19) SQL (45) Udemy (17) UX Research (1) web application (11) Web development (7) web scraping (3)

Followers

Python Coding for Kids ( Free Demo for Everyone)