1.问题 循环导入,代码如下: from c import c def b(): print('b') b.py from b import b def a(): # from b import b print('a') b() a.py from a import a def c(): print('c') a() c.py from c import c from a import a from b import b c() b() a() start.py 然后执行start.py,发现报…