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 7612003
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T01:48:17+00:00 2026-05-31T01:48:17+00:00

Which style is preferable? Style A: def foo(): import some_module some_module.something Style B: import

  • 0

Which style is preferable?

Style A:

def foo():
    import some_module
    some_module.something

Style B:

import some_module

def foo():
    some_module.something

Assume that some_module is not used elsewhere in the code, only inside this function.

  • 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-05-31T01:48:18+00:00Added an answer on May 31, 2026 at 1:48 am

    Indeed, as already noted, it’s usually best to follow the PEP 8 recommendation and do your imports at the top. There are some exceptions though. The key to understanding them lies in your embedded question in your second paragraph: “at what stage does the import … happen?”

    Import is actually an executable statement. When you import a module, all the executable statements in the module run. “def” is also an executable statement; its execution causes the defined name to be associated with the (already-compiled) code. So if you have:

    def f():
        import something
        return None
    

    in a module that you import, the (compiled) import and return statements get associated with the name “f” at that point. When you run f(), the import statement there runs.

    If you defer importing something that is “very big” or “heavy”, and then you never run the function (in this case f), the import never happens. This saves time (and some space as well). Of course, once you actually call f(), the import happens (if it has already happened once Python uses the cached result, but it still has to check) so you lose your time advantage.

    Hence, as a rule of thumb, “import everything at the top” until after you have done a lot of profiling and discovered that importing “hugething” is wasting a lot of time in 90% of your runs, vs saving a little time in 10% of them.

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

Sidebar

Related Questions

Which style of Ruby string quoting do you favour? Up until now I've always
I have a couple of Divs which I style using a class and an
I have an input text field which has style: visibility: visible or style: visibility:
In HTML/CSS you can define a style which can be applied to many types
I've been searching for a good way in which to style up a selectbox,
I have the following style defined which is being applied (as text changes to
I have a master page which references a style in the following manner: <link
What's the best practise when adapting C-style functions which return a true/false to Java?
I have a CSS file, which contain the style information of my web. Some
Which is considered better style? int set_int (int *source) { *source = 5; return

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.