标签:port bin import hello -- def code ready print
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()
标签:port bin import hello -- def code ready print
原文地址:http://blog.51cto.com/546136/2059390