Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8198659
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T05:59:46+00:00 2026-06-07T05:59:46+00:00

I’m a programming newbie and am having some trouble understanding an example from my

  • 0

I’m a programming newbie and am having some trouble understanding an example from my python textbook (“Beginning Python” by Magnus Lie Hetland). The example is for a recursive generator designed to flatten the elements of nested lists (with arbitrary depth):

def flatten(nested):
    try:
        for sublist in nested:
            for element in flatten(sublist):
                yield element
    except TypeError:
        yield nested

You would then feed in a nested list as follows:

>>> list(flatten([[[1],2],3,4,[5,[6,7]],8]))
[1,2,3,4,5,6,7,8]

I understand how the recursion within flatten() helps to whittle down to the innermost element of this list, ‘1’, but what I don’t understand is what happens when ‘1’ is actually passed back into flatten() as ‘nested’. I thought that this would lead to a TypeError (can’t iterate over a number), and that the exception handling was what would actually do the heavy lifting for generating output… but testing with modified versions of flatten() has convinced me that this isn’t the case. Instead, it seems like the ‘yield element’ line is responsible.

That said, my question is this… how can ‘yield element’ ever actually be executed? It seems like ‘nested’ will either be a list – in which case another layer of recursion is added – or it’s a number and you get a TypeError.

Any help with this would be much appreciated… in particular, I’d love to be walked through the chain of events as flatten() handles a simple example like:

list(flatten([[1,2],3]))
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T05:59:47+00:00Added an answer on June 7, 2026 at 5:59 am

    I have added some instrumentation to the function:

    def flatten(nested, depth=0):
        try:
            print("{}Iterate on {}".format('  '*depth, nested))
            for sublist in nested:
                for element in flatten(sublist, depth+1):
                    print("{}got back {}".format('  '*depth, element))
                    yield element
        except TypeError:
            print('{}not iterable - return {}'.format('  '*depth, nested))
            yield nested
    

    Now calling

    list(flatten([[1,2],3]))
    

    displays

    Iterate on [[1, 2], 3]
      Iterate on [1, 2]
        Iterate on 1
        not iterable - return 1
      got back 1
    got back 1
        Iterate on 2
        not iterable - return 2
      got back 2
    got back 2
      Iterate on 3
      not iterable - return 3
    got back 3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
I'm having trouble keeping the paragraph square between the quote marks. In firefox the
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
I have a text area in my form which accepts all possible characters from
Does anyone know how can I replace this 2 symbol below from the string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.