這一次來教大家Python還蠻重要的imposrt模組。
import 模組名稱
dir(模組名稱)
第一種:from 模組名稱 import *
第二種:from 模組名稱 import 函數名稱
第三種:import 模組名稱
import 模組
my_var = 10
def my_func():
print "This is the function inside the module"
print "This will be executed"
import my_module
print "This is my app"
藉由import 模組,使用模組內的函式與常數
my_var = 10
def my_func():
print "This is the function inside the module"
print "This will be executed"
import my_module
print "This is my app"
print my_module.my_var
my_module.my_func()
如果在非直接執行module,可不出現解釋文字
my_var = 10
def my_func():
print "This is the function inside the module"
if __name__ == '__main__':
print "This will be executed"
import my_module2
print "This is my app"
print my_module2.my_var
my_module2.my_func()