练习的python

# Main.py
#
import os
import MyClass

#
def getOtherFile():
    filename=os.getcwd()+'\\2014.log'
    print filename
    MyClass.saveToFile('123',filename) 

#
def main():
    #print 'Hello World!'
    os.chdir(os.path.dirname(os.path.abspath(os.path.join(os.getcwd(),__file__))))
    #print os.getcwd()
    getOtherFile()
    
#
if __name__=='__main__':
    main()
# MyClass.py

import os

#
def fun():
    for i in range(0,10):
        print i

#
def saveToFile(string,filepath):
    #f=open(filepath,"a")
    f=open(filepath,'wb')
    for i in range(0,123):
        f.write(string)
        f.write('\r\n')      
    f.close()


你可能感兴趣的:(练习的python)