Python指令备忘
2019-04-23 本文已影响0人
黑小柴
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)