美文网首页
Python指令备忘

Python指令备忘

作者: 黑小柴 | 来源:发表于2019-04-23 17:21 被阅读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) 
    
    

    相关文章

      网友评论

          本文标题:Python指令备忘

          本文链接:https://www.haomeiwen.com/subject/txgjfqtx.html