python module usage

发布时间:2019-08-09 10:20:09编辑:auto阅读(2030)

    hello.py

    #!/usr/bin/python
    def hello():
    print "imported me,hello world"
    def login():
    print "I'm already login"

    test.py
    --------------------------------------
        #!/usr/bin/python 
        import hello 
        hello.hello()
        hello.login()

关键字

上一篇: python学习之路

下一篇: python 精练(1)