Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

import - Problems importing a python module

im new to python and programming, i am reading a book and im learning about modules, but when i try to import my module, a python error says " ModuleNotFoundError: No module named 'transaction' " The module is a txt file named transaction.py, it is in my python main folder and im trying to import it this way:

from transaction import *

just as the book says to do, but it wont work in my code

what am i missing!!?

question from:https://stackoverflow.com/questions/65835629/problems-importing-a-python-module

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I think since you didn't upload a picture of your problem that you have a path problem so try to put ur file transaction.py and the file you import from in the same folder like this :

enter image description here

or you will need to import it by accessing the path

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...