ファイルをimportしてimportしたファイルで定義した関数を使用したいです。
ディレクトリ構成は以下のようになっています。
utils.pyで定義した下記の関数をhuman.pyでimportして使用したいです
def say_twice(word): return (word + '!')*2
human.pyにて
from ..tools import utils def cry(): return utils.say_twice('cry') print(cry())
上記の処理を実行しようとすると、
ImportError: attempted relative import with no known parent package
とエラーが出てしまいます。
対処法をご教授頂けると幸いです。
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/25 08:04 編集
2021/05/25 08:02