Python指令备忘

Python -m在Python的help info中的解释:run library module as a script (terminates option list)

python -m SimpleHTTPServer    #python2中启动一个简单的http服务器
python -m http.server    #python3中启动一个简单的http服务器

python global : 要想改变函数外面的变量的值或者想在函数里声明在函数外面引用,要在函数里声明global xxx

hehe=6
def f():
    global hehe
    hehe=3
f()
print(hehe) 

你可能感兴趣的:(Python指令备忘)