Skip to main content
Library homepage
 

Text Color

Text Size

 

Margin Size

 

Font Type

Enable Dyslexic Font
Engineering LibreTexts

7.3: Top-level Code

( \newcommand{\kernel}{\mathrm{null}\,}\)

Learning Objectives

By the end of this section you should be able to

  • Identify code that will run as a side effect of importing.
  • Explain the purpose of if __name__ == "__main__".

Side effects

Modules define functions and constants to be used in other programs. When importing a module, all code in the module is run from top to bottom. If a module is not designed carefully, unintended code might run as a side effect. The unintended code is generally at the top level, outside of function definitions.

Checkpoint: Sphere test code
Concepts in Practice: Side effects
1.
Which line would cause a side effect when imported?
1
import math
2
 
3
print("Defining sphere function")
4
 
5
def sphere(radius):
6
"""Gets the volume of a sphere."""
7
return 4/3 * math.pi * radius**3
  1. line 1
  2. line 3
  3. line 5
2.
The following volume.py module causes a side effect.
import math

def sphere(radius):
  """Gets the volume of a sphere."""
  return 4/3 * math.pi * radius**3

for r in range(10000000):
  volume = sphere(r)
  1. true
  2. false
3.
The following greeting.py module causes a side effect.
name = input("What is your name? ")
print(f"Nice to meet you, {name}!")
live = input("Where do you live? ")
print(f"{live} is a great place.")
  1. true
  2. false

Using __name__

Python modules often include the statement if __name__ == "__main__" to prevent side effects. This statement is true when the module is run as a program and false when the module is imported.

Checkpoint: The main module
Concepts in Practice: Using __name__
4.
What is the output when running the following test.py module?
import math

print(math.__name__)
print(__name__)
  1. >math
    test
    
  • __main__
    test
    
  • math
    __main__
    
  • 5.
    What is the output when importing the following test.py module?
    import math
    
    print(math.__name__)
    print(__name__)
    
    1. math
      test
      
    2. __main__
      test
      
    3. math
      __main__
      
    6.
    What line is useful for preventing side effects when importing?
    1. if __name__ == "main":
    2. if __name__ == __main__:
    3. if __name__ == "__main__":
    Exploring further

    Variables that begin and end with double underscores have special meaning in Python. Double underscores are informally called "dunder" or "magic" variables. Other examples include __doc__ (the module's docstring) and __file__ (the module's filename).

    Try It: Side effects

    This exercise is a continuation of the "Missing imports" exercise. Previously, you added missing import statements to the top of the program. Now, modify the program to prevent side effects when importing the program as a module:

    1. Add if __name__ == "__main__" at the end.
    2. Move all test code under that if statement.

    The program should run without errors and produce the same output as before.

    Try It: Conversion test

    This exercise is a continuation of the "Conversion module" exercise. Previously, you wrote the functions cel2fah, fah2cel, km2mi, and mi2km. Write test code at the end of conversion.py (the original file) for each of these functions. The test code must not run as a side effect when conversion is imported by other programs. When running conversion.py as the main program, the test output should be:

        0 C is 32 F
        5 C is 41 F
        10 C is 50 F
        15 C is 59 F
        20 C is 68 F
    
        20 F is -7 C
        25 F is -4 C
        30 F is -1 C
        35 F is 2 C
        40 F is 4 C
        
        1 km is 0.6 mi
        2 km is 1.2 mi
        3 km is 1.9 mi
        4 km is 2.5 mi
        5 km is 3.1 mi
        
        5 mi is 8.0 km
        6 mi is 9.7 km
        7 mi is 11.3 km
        8 mi is 12.9 km
        9 mi is 14.5 km

    This page titled 7.3: Top-level Code is shared under a CC BY 4.0 license and was authored, remixed, and/or curated by OpenStax via source content that was edited to the style and standards of the LibreTexts platform.

    • Was this article helpful?

    Support Center

    How can we help?