Why am I getting the following error in Python "ImportError: No module named py"? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T22:17:43Zhttp://stackoverflow.com/feeds/question/489497http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py4Why am I getting the following error in Python "ImportError: No module named py"?jtbradlehttp://stackoverflow.com/users/147232009-01-28T21:37:27Z2009-01-28T22:16:04Z
<p>I'm a Python newbie, so bear with me :)</p>
<p>I created a file called test.py with the contents as follows:</p>
<pre><code>test.py
import sys
print sys.platform
print 2 ** 100
</code></pre>
<p>I then ran <code>import test.py</code> file in the interpreter to follow an example in my book.
When I do this, I get the output with the import error on the end.</p>
<pre><code>win32
1267650600228229401496703205376
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named py
</code></pre>
<p>Why do I get this error and how do I fix it? Thanks!</p>
http://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py/489501#4895014Answer by Evan Fosmark for Why am I getting the following error in Python "ImportError: No module named py"?Evan Fosmarkhttp://stackoverflow.com/users/497012009-01-28T21:39:12Z2009-01-28T21:39:12Z<p>You don't specify the extension when importing. Just do:</p>
<pre><code>import test
</code></pre>
http://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py/489503#4895037Answer by DzinX for Why am I getting the following error in Python "ImportError: No module named py"?DzinXhttp://stackoverflow.com/users/187452009-01-28T21:39:36Z2009-01-28T21:39:36Z<p>Instead of:</p>
<pre><code>import test.py
</code></pre>
<p>simply write:</p>
<pre><code>import test
</code></pre>
<p>This assumes test.py is in the same directory as the file that imports it.</p>
http://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py/489540#4895402Answer by cdleary for Why am I getting the following error in Python "ImportError: No module named py"?cdlearyhttp://stackoverflow.com/users/35942009-01-28T21:47:51Z2009-01-28T21:58:50Z<p>As others have mentioned, you don't need to put the file extension in your import statement. Recommended reading is the <a href="http://docs.python.org/tutorial/modules.html" rel="nofollow">Modules section of the Python Tutorial</a>.</p>
<p>For a little more background into the error, the interpreter thinks you're trying to import a module named <code>py</code> from inside the <code>test</code> package, since the dot indicates encapsulation. Because no such module exists (and <a href="http://docs.python.org/tutorial/modules.html#packages" rel="nofollow">test isn't even a package</a>!), it raises that error.</p>
<p>As indicated in the <a href="http://docs.python.org/reference/simple_stmts.html#the-import-statement" rel="nofollow">more in-depth documentation on the import statement</a> it still executes all the statements in the <code>test</code> module before attempting to import the <code>py</code> module, which is why you get the values printed out.</p>
http://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py/489547#4895472Answer by Triptych for Why am I getting the following error in Python "ImportError: No module named py"?Triptychhttp://stackoverflow.com/users/430892009-01-28T21:48:36Z2009-01-28T21:48:36Z<p>This strange-looking error is a result of how Python imports modules. </p>
<p><strong>Python sees</strong>: </p>
<pre><code>import test.py
</code></pre>
<p><strong>Python thinks</strong> (simplified a bit):</p>
<blockquote>
<p>import module test.</p>
<ul>
<li>search for a test.py in the module search paths</li>
<li>execute test.py (where you get your output)</li>
<li>import 'test' as name into current namespace</li>
</ul>
<p>import test.py</p>
<ul>
<li>search for file test/py.py</li>
<li>throw ImportError (no module named 'py') found.</li>
</ul>
</blockquote>
<p>Because python allows dotted module names, it just thinks you have a submodule named <code>py</code> within the <code>test</code> module, and tried to find that. It has no idea you're attempting to import a file.</p>