Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8064635
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T11:25:42+00:00 2026-06-05T11:25:42+00:00

Lets say I have a python model fibo.py defined as below: #Fibonacci numbers module

  • 0

Lets say I have a python model fibo.py defined as below:

#Fibonacci numbers module
print "This is a statement"
def fib(n):
    a,b = 0,1
    while b < n:
        print b
        a, b = b, a+b

def fib2(n):
    a,b = 0,1
    result= []
    while(b < n):
        result.append(b)
        a, b = b, a+b
    return result

In my interpreter session, I do the following:

>> import fibo
This is a statement
>>> fibo.fib(10)
1
1
2
3
5
8

>>> fibo.fib2(10)
[1, 1, 2, 3, 5, 8]
>>> fibo.__name__
'fibo'
>>> 

So far so good… restart the interpreter:

>>> from fibo import fib,fib2
This is a statement
>>> fibo.__name__
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'fibo' is not defined
>>>

I expected the error as I have only imported fib and fib2. But I don’t understand why the statement was printed when I only imported fib and fib2.

Secondly if I change the module as:

#Fibonacci numbers module
print "This is a statement"
print __name__

What should be the expected result?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T11:25:43+00:00Added an answer on June 5, 2026 at 11:25 am

    This is expected behavior. When you import with from X import Y, the module is still loaded and executed, as documented in the Language Reference. In fact, when you do

    from fibo import fib
    print("foo")
    import fibo
    

    will print This is a statement, followed by foo. The second import doesn’t print anything as the module is already cached.

    Your second module will print This is a statement followed by fibo. The module knows its own name at load time.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to concat numbers in Python, lets say I have the
Lets say that I have only DHT (distributed hash table) implemented (in Python), and
How do I make something like user-defined __repr__ in Python? Let's say I have
Lets say have this immutable record type: public class Record { public Record(int x,
Lets say I have an enumerable source, that looks like this: IEnumerable<string> source =
Lets say i have a python script at homedir/codes/py/run.py I also have a bash
I have paused a script for lets say 3500 seconds by using time module
Lets say I have two functions: def foo(): return 'foo' def bar(): yield 'bar'
HI, lets say I have a Java interface B, something like this. B.java :
Lets say a have program.exe , i will create a python script that will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.