A是一个.py文件(A.py)
这样from A import n导入的话,并不如我想的:只导入n,而不运行A.py中的顶层代码
所以A.py中的顶层代码前要加上
if __name__ == '__main__':