Can someone explain this #Python import behavior?
I'm in a directory with 3 files:
a.py contains `A = 1; from b import *`
b.py contains `from a import *; A += 1`
c.py contains `from a import A; print(A)`
Can you guess and explain what happens when you run `python c.py`?



