sample.pyとtrans.pyは同じフォルダの中同じ階層にあります。
hoge
-------sample.py 一緒のフォルダ
-------trans.py 一緒のフォルダ
#sample.py
import trans recog_result_text = trans.function()
でエラーになります。
NameError: name 'trans' is not defined
import trans で定義できているのではないでしょうか?
#sample.py
# !/usr/bin/env python # coding: utf-8 def function(): print("★") return recog_result_text
回答1件
あなたの回答
tips
プレビュー