Answer the question
In order to leave comments, you need to log in
How to properly import a module in python 3.5?
studying python and according to Lutz's book I try to import
the themiy.py module, I
launch cmd, I enter python into cmd, 3 standard lines appear and an invitation to enter commands ">>>".
then I enter import themiy.py (or import themiy) to which an error appears:
please tell me
Answer the question
In order to leave comments, you need to log in
Your themiy.py is written incorrectly, which is what Python says when you import it.
More specifically, it should say something like this:
a = 'miy'
b = 'mua'
c = 'biy'
print(a, b, c)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question