Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • 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 (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

stylus@social.afront.orgS

stylus@social.afront.org

@stylus@social.afront.org
About
Posts
1
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

View Original

Posts

Recent Best Controversial

  • Can someone explain this #Python import behavior
    stylus@social.afront.orgS stylus@social.afront.org

    @bmispelon

    $ echo 'A = 1; print("A1"); from b import A; print("A2")' > a.py
    $ echo 'print("B1"); from a import A; print("B2"); A += 1' > b.py
    $ python -c 'from a import A; print(A)'
    A1
    B1
    B2
    A2
    2

    I added several prints so that it's possible to tell what order code is executed, and changed import * to import A because I think it improves clarity without changing the behavior.

    • The main program runs
    • It encounters an import of a so it starts executing the content of a.py in a newly created a module
    • It sets A.a=1 via the assignment statement in a.py
    • It encounters an import of b so it starts executing the content of b.py in a newly created b module
    • It sets b.A=1 by from...import
    • It adds 1 to b.A so that b.A is now equal to 2
    • Execution reaches the end of b.py so it returns to a.py
    • a.py sets a.A to 2 by from...import
    • Execution reaches the end of a.py so it returns to the main program.
    • The main program sets __main__.A to 2 by from ...import
    • The value of A is printed (2)
    Uncategorized python
  • Login

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