Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #95215 > unrolled thread

Re: Importing is partially working...

Started byChris Angelico <rosuav@gmail.com>
First post2015-08-10 20:11 +1000
Last post2015-08-10 20:11 +1000
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Importing is partially working... Chris Angelico <rosuav@gmail.com> - 2015-08-10 20:11 +1000

#95215 — Re: Importing is partially working...

FromChris Angelico <rosuav@gmail.com>
Date2015-08-10 20:11 +1000
SubjectRe: Importing is partially working...
Message-ID<mailman.36.1439201482.3627.python-list@python.org>
On Sun, Aug 9, 2015 at 3:45 PM, Dwight GoldWinde <Dwight@goldwinde.com> wrote:
> name = 'Jim'
> coach = 'Dwight'
> import importlib
> sentence = 'Hi, there, ' + name + '. My name is ' + coach + '. I will be
> your coach today.'
> from Functions.py import humprint
> humprint (sentence)
>
> Traceback (most recent call last):
>
>   File "Intro.py", line 5, in <module>
>
>     from Functions.py import humprint
>
> ImportError: No module named 'Functions.py'; 'Functions' is not a package
>
>
>
> So, it seems like it is accessing the module, but not the function?

You're almost there! But in Python, you don't import something from a
specific file - you import from a module, and the Python interpreter
is free to locate that file anywhere that it can. It might be
implemented in C, and be stored in Functions.so (on Unix-like systems)
or Functions.dll (on Windows); it might be precompiled and loaded from
Functions.pyc; it might come from a zip file, or some other form of
special import source. So all you say is:

from Functions import humprint

and Python does the rest. Yep, that's all the change you need, and
your code will most likely work. (I haven't tested it, but it'll
probably work.)

Have fun!

ChrisA

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web