python勉強中です。以下、エラーとなる理由と解決策を教えて頂けないでしょうか。
changetext.pyにて、定義されていない変数textを指定しているというエラーとなります。
ch1text.pyよりimportしているつもりで作成したのですが、エラー理由と解決方法がわかりません。
ファイル:2つ使用中(1つはch1text.py もう一つはchangetext.py)
【ch1text.py】
text = This is a pen
words = text.split()
print(words)
→出力結果
['This', 'is', 'a', 'pen']
【changetext.py】
import ch1text
words = text.split()
print(words)
→出力結果
NameError: name 'text' is not defined
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/05 02:29