diff options
| author | zhang <zch921005@126.com> | 2022-08-22 22:24:15 +0800 |
|---|---|---|
| committer | zhang <zch921005@126.com> | 2022-08-22 22:24:15 +0800 |
| commit | 2c19d4adf5df7281017fb7f5cfeb3f7083ea0d31 (patch) | |
| tree | 11af5b3f1cbf393a673c604847aa855a410000be /basics/python/circular/c.py | |
| parent | 94b6d3246c72eb3cae58a2fd18771e3c2c3e7cb2 (diff) | |
imports
Diffstat (limited to 'basics/python/circular/c.py')
| -rw-r--r-- | basics/python/circular/c.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/basics/python/circular/c.py b/basics/python/circular/c.py new file mode 100644 index 0000000..b17402d --- /dev/null +++ b/basics/python/circular/c.py @@ -0,0 +1,10 @@ + +from b import B +from a import A + + +a_inst = A() +b_inst = B() + +print(a_inst.foo(b_inst)) +b_inst.append(a_inst) |
