Define and use a module : Module « Language Basics « Python






Define and use a module

#//File: b.py

def spam(text):
    print text, 'spam'

#///////////////////////////////////////////////////////////////////////////
#//File: Main.py

import b
b.spam('gumby')


           
       








Related examples in the same category

1. Using sys.modules Using sys.modules
2.Import a pre-defined module
3.Import a specific member from a module
4.Import all members in a module
5.Fetches an already-loaded module
6.Change referenced variable value
7.Print module infomation
8.forces new code to load/run
9.Module scope variables
10.Define and use Module: import
11.Packages Are ModulesPackages Are Modules
12.Define and use Modules
13.Import statement that imports names from a module directly
14.Module import