python3.x from xxx import * , 入口python中 无法访问引入的函数

clipboard.png

目录结构大致如此, __init__.py 无内容

main.py 中定义内容:

from new1 import *

print (getpath())

app.py :

import os 
def getpath():
    return "tt"

报错: NameError: name 'getpath' is not defined

求教

阅读 6.2k
1 个回答
.
|-- main.py
`-- new1
    |-- __init__.py
    |-- __pycache__
    |-- app.py
    `-- app2.py
# main.py
from new1 import *

print(getpath())
# new1/__init__.py
from .app import *
from .app2 import *
# new1/app.py
import os

def getpath():
    return 'tt'
# new1/app2.py
import os

def getpath2():
    return 'tt'

但是這樣做並不安全, 慎之


我回答過的問題: Python-QA

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进