📜  循环导入python代码示例

📅  最后修改于: 2022-03-11 14:46:23.145000             🧑  作者: Mango

代码示例1
# File: flask.py
import flask

# This results in an error, as the file tries to import itself.
# The simplest solution is just to rename your file
# so that it has a name different from all your modules.