python shell 运行.py文件

python中想在shell中调用一个test.py文件里面的方法。

test.py文件里面的内容如下:

  1. def ListFea():  
  2.     print "this is myself"  
  3.   
  4. def ListFeaT(fea):  
  5.     print "this is:", fea  
  6.   
  7. def ListFeaR(fee, fea):  
  8.     print "this is:", fee, "add", fea  
  9.   
  10. class simpleTest(object):  
  11.     "simple test"  
  12.     def runone():  
  13.         print "runone"  
  14.     def runtwo(self):  
  15.         print "this has:",self  
  16.     def runthree(self,value):  
  17.         print "this is:",value 

如何在shell中调用py中的内容呢。

其实主要加几行就够了:

 
  1. import sys #引入sys库体  
  2. sys.path.append("C://myPython"#往系统路径中加入自己存放py文件的地址 
    然后就可以开始通过import的方法导入相关的方法和内容了
  3. from test import * #从test.py文件中加载所有的内容。 

你可能感兴趣的:(python shell 运行.py文件)