Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

Reverend Jim

@Reverend Jim
About
Posts
11
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • I lost it today with stupid - the world is going to end because of corporate IT.
    R Reverend Jim

    I know exactly how you feel. I worked in IT for a small, very specialized group in a large (5000+) corporation. Fortunately my group maintained the hardware/software for a corporate core function (AGC/SCADA/electric utility). As such we were insulated from the rest of the IT insanity. Eventually to further insulate us we were removed completely from IT and put directly under the engineers in charge of transmission/distribution (another hell, but at least a lesser one).

    The Lounge help css sysadmin collaboration beta-testing

  • hello, good day, does anyone know how to solve this problem? It would help me a lot if you could explain how to do it
    R Reverend Jim

    A tad late to the party but a recursive approach seems to work.

    def Collapse(lst):

    result = \[\]
    
    for item in lst:
        if type(item) == list:
            result.extend(Collapse(item))
        else:
            result.append(item)
    
    return result
    

    a = [1, [2, 3, [3.1, 3.2]], 4]
    b = Collapse(a)

    print(a)
    print(b)

    Python help tutorial question

  • Best Python book
    R Reverend Jim

    Beginning Python: From Novice to Professional, Second Edition by Magnus Lie Hetland - NTNU[^]

    The Lounge python question learning

  • Not getting Insider daily email
    R Reverend Jim

    Got the email for Nov 16 & 17 so it appears to be fixed for now. Thanks.

    Site Bugs / Suggestions

  • Not getting Insider daily email
    R Reverend Jim

    I did not get the Daily Insider on Friday.

    Site Bugs / Suggestions

  • Not getting Insider daily email
    R Reverend Jim

    Nope. Still not getting it.

    Site Bugs / Suggestions

  • Not getting Insider daily email
    R Reverend Jim

    OK Thanks. I'll keep an eye out tomorrow.

    Site Bugs / Suggestions

  • Not getting Insider daily email
    R Reverend Jim

    I don't know why, but I have stopped receiving The Insider daily email again. The last one I received was Nov 6. This happened a couple of weeks ago. I checked my settings and I still have it selected. It just stopped coming. This is not the third time this has happened.

    Site Bugs / Suggestions

  • Daily newsletter problems
    R Reverend Jim

    Got Friday. Thanks.

    Site Bugs / Suggestions help question

  • Daily newsletter problems
    R Reverend Jim

    Yeah. As long as I was resetting my preferences I thought I'd see what the weekly looks like. BTW, nothing in the junk folder. It's a mystery for sure. Thanks for the link to the archives.

    Site Bugs / Suggestions help question

  • Daily newsletter problems
    R Reverend Jim

    Are you currently having a problem with the daily newsletters? I received one on Oct 5, 6, 7, 8, 9. I reset my preferences on Oct 15 and received the newsletter on Oct 16 but nothing since then. Is there an online area where I can read the ones I missed?

    Site Bugs / Suggestions help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups