From 2c19d4adf5df7281017fb7f5cfeb3f7083ea0d31 Mon Sep 17 00:00:00 2001 From: zhang Date: Mon, 22 Aug 2022 22:24:15 +0800 Subject: imports --- basics/python/circular/c.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 basics/python/circular/c.py (limited to 'basics/python/circular/c.py') 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) -- cgit v1.2.3